-
Notifications
You must be signed in to change notification settings - Fork 425
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure the solver sees the correct subdir (#5350)
* Re-export subdir * Ignore subdir = noarch --------- Co-authored-by: mbargull <[email protected]> Co-authored-by: Isuru Fernando <[email protected]>
- Loading branch information
1 parent
01b47f4
commit 17c8fe6
Showing
5 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### Enhancements | ||
|
||
* <news item> | ||
|
||
### Bug fixes | ||
|
||
* Ensure cross-building recipes select the correct noarch package variants. (#5341 via #5350) | ||
|
||
### Deprecations | ||
|
||
* <news item> | ||
|
||
### Docs | ||
|
||
* <news item> | ||
|
||
### Other | ||
|
||
* <news item> |
2 changes: 2 additions & 0 deletions
2
tests/test-recipes/metadata/_cross_unix_windows_mingw/conda_build_config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
target_platform: | ||
- win-64 |
18 changes: 18 additions & 0 deletions
18
tests/test-recipes/metadata/_cross_unix_windows_mingw/meta.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package: | ||
name: foo | ||
version: 0.0.1 | ||
|
||
build: | ||
number: 0 | ||
script: | ||
- echo 'hello' | ||
- ls $PREFIX | ||
# this is the unix layout. | ||
- test ! -d $PREFIX/x86_64-w64-mingw32 | ||
- test -d $PREFIX/Library | ||
|
||
requirements: | ||
build: | ||
host: | ||
- m2w64-sysroot_win-64 | ||
run: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters