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

Switch Windows CI builds to VS2022 and Py3.10 #4057

Merged
merged 2 commits into from
Nov 11, 2021
Merged
Changes from 1 commit
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
Next Next commit
Switch Windows CI builds to VS2022 and Py3.10
Replacing the build with 3.5 and VS2015

Signed-off-by: Mats Wichmann <mats@linux.com>
  • Loading branch information
mwichmann committed Nov 10, 2021
commit 9c77756c8c3934003978e0bcd148dcf6d9f275b4
29 changes: 17 additions & 12 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
#version: '3.0.1.{build}'
#
# When planning updates here, check availability at:
# https://www.appveyor.com/docs/windows-images-software/
# This is slow, try to keep the number of builds as low as makes sense.

image:
# linux builds done in Travis CI for now
- Visual Studio 2015
- Visual Studio 2017
- Visual Studio 2019
- Visual Studio 2022

cache:
- downloads -> appveyor.yml
Expand All @@ -21,9 +25,6 @@ install:
# split builds into sets of four jobs due to appveyor per-job time limit
environment:
matrix:
- WINPYTHON: "Python35"
COVERAGE: 0

- WINPYTHON: "Python36"
COVERAGE: 1

Expand All @@ -33,18 +34,14 @@ environment:
- WINPYTHON: "Python38"
COVERAGE: 0

- WINPYTHON: "Python310"
COVERAGE: 0


# remove sets of build jobs based on criteria below
# to fine tune the number and platforms tested
matrix:
exclude:
# test python 3.5 on Visual Studio 2015 image
- image: Visual Studio 2015
WINPYTHON: "Python36"
- image: Visual Studio 2015
WINPYTHON: "Python37"
- image: Visual Studio 2015
WINPYTHON: "Python38"

# test python 3.8 on Visual Studio 2017 image
- image: Visual Studio 2017
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

python 310?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2nd try, let's see if I've got it right this time.

WINPYTHON: "Python35"
Expand All @@ -59,6 +56,14 @@ matrix:
- image: Visual Studio 2019
WINPYTHON: "Python36"

# test python 3.10 on Visual Studio 2022 image
- image: Visual Studio 2022
WINPYTHON: "Python36"
- image: Visual Studio 2022
WINPYTHON: "Python37"
- image: Visual Studio 2022
WINPYTHON: "Python38"

# remove some binaries we don't want to be found
before_build:
- ps: .\.appveyor\ignore_git_bins.ps1
Expand Down