Skip to content
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

ENH add migration for gcc 9.3.0 #837

Merged
merged 7 commits into from
Oct 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ c_compiler_version: # [unix]
- 11 # [osx and arm64]
- 10 # [osx and x86_64]
- 7 # [linux64]
- 7.5 # [aarch64]
- 7 # [aarch64]
- 8 # [ppc64le]
- 8.3 # [armv7l]
- 8 # [armv7l]
cxx_compiler:
- gxx # [linux]
- clangxx # [osx]
Expand All @@ -23,20 +23,20 @@ cxx_compiler_version: # [unix]
- 11 # [osx and arm64]
- 10 # [osx and x86_64]
- 7 # [linux64]
- 7.5 # [aarch64]
- 7 # [aarch64]
- 8 # [ppc64le]
- 8.3 # [armv7l]
- 8 # [armv7l]
fortran_compiler: # [unix or win64]
- gfortran # [linux64 or (osx and x86_64)]
- gfortran # [aarch64 or ppc64le or armv7l]
- flang # [win64]
fortran_compiler_version: # [unix or win64]
- 11 # [osx and arm64]
- 7.5 # [osx and x86_64]
- 7 # [osx and x86_64]
- 7 # [linux64]
- 7.5.0 # [aarch64]
- 7 # [aarch64]
- 8 # [ppc64le]
- 8.3 # [armv7l]
- 8 # [armv7l]
- 5 # [win64]
m2w64_c_compiler: # [win]
- m2w64-toolchain # [win]
Expand Down
28 changes: 28 additions & 0 deletions recipe/migrations/gcc930.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
migrator_ts: 1602079781

__migrator:
kind:
version
migration_number: 1
build_number: 1
override_cbc_keys:
- fortran_compiler_stub

c_compiler_version: # [unix]
- 11 # [osx and arm64]
- 10 # [osx and x86_64]
- 9 # [linux64 or aarch64 or ppc64le]

cxx_compiler_version: # [unix]
- 11 # [osx and arm64]
- 10 # [osx and x86_64]
- 9 # [linux64 or aarch64 or ppc64le]

fortran_compiler_version: # [unix or win64]
- 11 # [osx and arm64]
- 9 # [(osx and x86_64) or linux64 or aarch64 or ppc64le]
- 5 # [win64]
# we are keeping both versions for a while during the migration
# we need to remove 7/8 when the migration is done
- 7 # [(osx and x86_64) or linux64 or aarch64]
- 8 # [ppc64le]