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

Add pypy build #53

Merged
merged 4 commits into from
Mar 10, 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
52 changes: 32 additions & 20 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 12 additions & 9 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions .azure-pipelines/azure-pipelines-win.yml

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
Expand Up @@ -5,7 +5,7 @@ cdt_arch:
cdt_name:
- cos7
channel_sources:
- conda-forge,c4aarch64,defaults
- conda-forge
channel_targets:
- conda-forge main
docker_image:
Expand All @@ -15,4 +15,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.6'
- 3.6.* *_73_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cdt_arch:
cdt_name:
- cos7
channel_sources:
- conda-forge,c4aarch64,defaults
- conda-forge
channel_targets:
- conda-forge main
docker_image:
Expand All @@ -15,4 +15,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.7'
- 3.6.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cdt_arch:
cdt_name:
- cos7
channel_sources:
- conda-forge,c4aarch64,defaults
- conda-forge
channel_targets:
- conda-forge main
docker_image:
Expand All @@ -15,4 +15,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.8'
- 3.7.* *_cpython
18 changes: 18 additions & 0 deletions .ci_support/linux_aarch64_python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
BUILD:
- aarch64-conda_cos7-linux-gnu
cdt_arch:
- aarch64
cdt_name:
- cos7
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- condaforge/linux-anvil-aarch64
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.8.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.7'
- 3.6.* *_73_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.8'
- 3.6.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.6'
- 3.7.* *_cpython
12 changes: 12 additions & 0 deletions .ci_support/linux_ppc64le_python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
docker_image:
- condaforge/linux-anvil-ppc64le
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.8.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.6'
- 2.7.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.7'
- 3.6.* *_73_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '2.7'
- 3.6.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.8'
- 3.7.* *_cpython
12 changes: 12 additions & 0 deletions .ci_support/linux_python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
docker_image:
- condaforge/linux-anvil-comp7
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.8.* *_cpython
13 changes: 13 additions & 0 deletions .ci_support/migrations/pypy73.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
migrator_ts: 1580746218 # The timestamp of when the migration was made
__migrator:
kind:
version
migration_number: # Only use this if the bot messes up, putting this in will cause a complete rerun of the migration
1

python:
- 2.7.* *_cpython # [not (aarch64 or ppc64le)]
- 3.6.* *_cpython
- 3.7.* *_cpython
- 3.8.* *_cpython
- 3.6.* *_73_pypy # [not win64]
2 changes: 1 addition & 1 deletion .ci_support/migrations/python38.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ __migrator:
1

python:
- 2.7
- 2.7 # [not (aarch64 or ppc64le)]
- 3.6
- 3.7
- 3.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '2.7'
- 2.7.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.6'
- 3.6.* *_73_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.7'
- 3.6.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.8'
- 3.7.* *_cpython
16 changes: 16 additions & 0 deletions .ci_support/osx_python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
macos_min_version:
- '10.9'
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.8.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '2.7'
- 2.7.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.6'
- 3.6.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.7'
- 3.7.* *_cpython
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ pin_run_as_build:
min_pin: x.x
max_pin: x.x
python:
- '3.8'
- 3.8.* *_cpython
Loading