Skip to content

Commit

Permalink
Re-order windows CI jobs to get more useful information earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 22, 2019
1 parent 0d6a878 commit 7e747a3
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,58 @@ environment:
# descriptions, but can be wrong in the minor version, since we use the
# version pre-installed on AppVeyor.
#
# 32-bit jobs don't run the tests under the Python tracer, since that should
# be exactly the same as 64-bit.
matrix:
- JOB: "2.7 32-bit"
TOXENV: "py27"
PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.17"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "2.7 64-bit"
TOXENV: "py27"
PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.17"
PYTHON_ARCH: "64"

- JOB: "3.5 32-bit"
- JOB: "3.5 64-bit"
TOXENV: "py35"
PYTHON: "C:\\Python35"
PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.9"
PYTHON_ARCH: "64"

- JOB: "3.6 64-bit"
TOXENV: "py36"
PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.9"
PYTHON_ARCH: "64"

- JOB: "3.7 64-bit"
TOXENV: "py37"
PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.5"
PYTHON_ARCH: "64"

- JOB: "3.8 64-bit"
TOXENV: "py38"
PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.0"
PYTHON_ARCH: "64"

- JOB: "3.9 64-bit"
TOXENV: "py39"
PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: "3.9.0a2"
PYTHON_ARCH: "64"

# 32-bit jobs don't run the tests under the Python tracer, since that should
# be exactly the same as 64-bit.
- JOB: "2.7 32-bit"
TOXENV: "py27"
PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.17"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "3.5 64-bit"
- JOB: "3.5 32-bit"
TOXENV: "py35"
PYTHON: "C:\\Python35-x64"
PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.9"
PYTHON_ARCH: "64"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "3.6 32-bit"
TOXENV: "py36"
Expand All @@ -55,51 +79,27 @@ environment:
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "3.6 64-bit"
TOXENV: "py36"
PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.9"
PYTHON_ARCH: "64"

- JOB: "3.7 32-bit"
TOXENV: "py37"
PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.5"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "3.7 64-bit"
TOXENV: "py37"
PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.5"
PYTHON_ARCH: "64"

- JOB: "3.8 32-bit"
TOXENV: "py38"
PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.0"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "3.8 64-bit"
TOXENV: "py38"
PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.0"
PYTHON_ARCH: "64"

- JOB: "3.9 32-bit"
TOXENV: "py39"
PYTHON: "C:\\Python39"
PYTHON_VERSION: "3.9.0a2"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "3.9 64-bit"
TOXENV: "py39"
PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: "3.9.0a2"
PYTHON_ARCH: "64"

# Meta coverage
- JOB: "Meta 2.7"
TOXENV: "py27"
Expand Down

0 comments on commit 7e747a3

Please sign in to comment.