logging working in NewParallel, but changed to be default. Need to figure out how...
[scons.git] / .appveyor.yml
blobef339537b80f9647173f9e8cfee8ce170ee51082
1 #version: '3.0.1.{build}'
3 # When planning updates here, check availability at:
4 # https://www.appveyor.com/docs/windows-images-software/
5 # This is slow, try to keep the number of builds as low as makes sense.
7 image:
8   # linux builds done in Travis CI for now
9   - Visual Studio 2017
10   - Visual Studio 2019
11   - Visual Studio 2022
13 cache:
14   - downloads -> appveyor.yml
15   - '%LOCALAPPDATA%\pip\Cache'
16   - C:\ProgramData\chocolatey\bin -> appveyor.yml
17   - C:\ProgramData\chocolatey\lib -> appveyor.yml
19 install:
20   # add python and python user-base to path for pip installs
21   - cmd: .\.appveyor\install.bat
23 # build matrix will be number of images multiplied by each '-' below,
24 # less any exclusions.
25 # split builds into sets of four jobs due to appveyor per-job time limit
26 environment:
27   matrix:
29     - WINPYTHON: "Python310"
30       COVERAGE: 0
32     - WINPYTHON: "Python37"
33       COVERAGE: 0
35     - WINPYTHON: "Python38"
36       COVERAGE: 0
37           
38     - WINPYTHON: "Python36"
39       COVERAGE: 1
45 # remove sets of build jobs based on criteria below
46 # to fine tune the number and platforms tested
47 matrix:
48   exclude:
49     # test python 3.8 on Visual Studio 2017 image
50     - image: Visual Studio 2017
51       WINPYTHON: "Python310"
52     - image: Visual Studio 2017
53       WINPYTHON: "Python37"
54     - image: Visual Studio 2017
55       WINPYTHON: "Python38"
57     # test python 3.7 on Visual Studio 2019 image
58     - image: Visual Studio 2019
59       WINPYTHON: "Python310"
60     - image: Visual Studio 2019
61       WINPYTHON: "Python36"
63     # test python 3.10 on Visual Studio 2022 image
64     - image: Visual Studio 2022
65       WINPYTHON: "Python36"
66     - image: Visual Studio 2022
67       WINPYTHON: "Python37"
68     - image: Visual Studio 2022
69       WINPYTHON: "Python38"
71 # remove some binaries we don't want to be found
72 before_build:
73     - ps: .\.appveyor\ignore_git_bins.ps1
75 build: off
77 build_script:
79   # exclude VS 10.0 because it hangs the testing until this is resolved:
80   # https://help.appveyor.com/discussions/problems/19283-visual-studio-2010-trial-license-has-expired
81   - ps: .\.appveyor\disable_msvc_10.ps1
83   # setup coverage by creating the coverage config file, and adding coverage
84   # to the sitecustomize so that all python processes start with coverage
85   - ps: .\.appveyor\coverage_setup.ps1
87   # NOTE: running powershell from cmd is intended because
88   # it formats the output correctly
89   - cmd: powershell -Command "& { if($env:COVERAGE -eq 1) { coverage run -p --rcfile=$($env:COVERAGE_PROCESS_START) runtest.py -j 2 -t --exclude-list exclude_list.txt -a } else { C:\\%WINPYTHON%\\python.exe runtest.py -j 2 -t --exclude-list exclude_list.txt -a }; if($LastExitCode -eq 2 -Or $LastExitCode -eq 0) { $host.SetShouldExit(0 )} else {$host.SetShouldExit(1)}}"
91 # run coverage even if there was a test failure
92 on_finish:
93   - ps: .\.appveyor\coverage_report.ps1
94   # running codecov in powershell causes an error so running in platform
95   # shells
96   - cmd: if %COVERAGE% equ 1 codecov -X gcov --file coverage_xml.xml