-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arch Migrator #58
Arch Migrator #58
Changes from all commits
573a459
d0ed46b
1e67bc4
eb76b40
193a5f9
fe14caf
0a30f14
6926c55
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
BUILD: | ||
- aarch64-conda_cos7-linux-gnu | ||
cdt_arch: | ||
- aarch64 | ||
cdt_name: | ||
- cos7 | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cuda_compiler: | ||
- nvcc | ||
cuda_compiler_version: | ||
- None | ||
cxx_compiler: | ||
- gxx | ||
cxx_compiler_version: | ||
- '11' | ||
docker_image: | ||
- quay.io/condaforge/linux-anvil-aarch64 | ||
libblas: | ||
- 3.9 *netlib | ||
liblapack: | ||
- 3.9 *netlib | ||
numpy: | ||
- '1.21' | ||
- '1.23' | ||
- '1.20' | ||
- '1.20' | ||
pin_run_as_build: | ||
python: | ||
min_pin: x.x | ||
max_pin: x.x | ||
python: | ||
- 3.10.* *_cpython | ||
- 3.11.* *_cpython | ||
- 3.8.* *_cpython | ||
- 3.9.* *_cpython | ||
target_platform: | ||
- linux-aarch64 | ||
zip_keys: | ||
- - cxx_compiler_version | ||
- cuda_compiler_version | ||
- cdt_name | ||
- docker_image | ||
- - python | ||
- numpy |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
cdt_name: | ||
- cos7 | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cuda_compiler: | ||
- nvcc | ||
cuda_compiler_version: | ||
- None | ||
cxx_compiler: | ||
- gxx | ||
cxx_compiler_version: | ||
- '11' | ||
docker_image: | ||
- quay.io/condaforge/linux-anvil-ppc64le | ||
libblas: | ||
- 3.9 *netlib | ||
liblapack: | ||
- 3.9 *netlib | ||
numpy: | ||
- '1.21' | ||
- '1.23' | ||
- '1.20' | ||
- '1.20' | ||
pin_run_as_build: | ||
python: | ||
min_pin: x.x | ||
max_pin: x.x | ||
python: | ||
- 3.10.* *_cpython | ||
- 3.11.* *_cpython | ||
- 3.8.* *_cpython | ||
- 3.9.* *_cpython | ||
target_platform: | ||
- linux-ppc64le | ||
zip_keys: | ||
- - cxx_compiler_version | ||
- cuda_compiler_version | ||
- cdt_name | ||
- docker_image | ||
- - python | ||
- numpy |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
conda_build: | ||
pkg_format: '2' | ||
conda_forge_output_validation: true | ||
github: | ||
branch_name: main | ||
tooling_branch_name: main | ||
conda_build: | ||
pkg_format: '2' | ||
provider: | ||
linux_aarch64: default | ||
linux_ppc64le: default |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this supposed to match
win-64
andlinux-64
but notlinux-aarch64
orlinux-ppc64le
? What aboutosx-64
? I saw a comment below,the linux & windows CI agents support AVX2 (OSX doesn't yet)
. I'd prefer to check explicitly for specific matching strings.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't used on Windows. There are
.bat
build files for that.AFAICT this was already building on macOS. So this doesn't change that.
All this does is exclude non-
x86_64
targets.