Skip to content

Commit 035b05c

Browse files
committed
try 2017
1 parent 4c9f8a9 commit 035b05c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
castxml-epic: 0
6767
cppstd: "-std=c++98"
6868

69-
- os: windows-latest
69+
- os: windows-2016
7070
compiler: msvc
7171
version: "default"
7272
python-version: 3.8
@@ -96,7 +96,7 @@ jobs:
9696
wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/5d937e938f7b882a3a3e7941e68f8312d0898aaf2082e00003dd362b1ba70b98b0a08706a1be28e71652a6a0f1e66f89768b5eaa20e5a100592d5b3deefec3f0/download | tar zxf - -C ~/
9797
9898
- name: Setup castxml for Windows
99-
if: matrix.os == 'windows-latest'
99+
if: matrix.os == 'windows-2016'
100100
shell: cmd
101101
run: |
102102
curl https://data.kitware.com/api/v1/file/hashsum/sha512/bdd1e2c3b203019f758681067bb4dd68cb37abc930fee6b4b5d181bd805236352f888d061f32c7f93bde2eac2caa1265b93bbccff6656f98989dafd08f55847b/download --output castxml.zip
@@ -118,10 +118,10 @@ jobs:
118118
119119
- name: Run tests for Windows
120120
shell: cmd
121-
if: matrix.os == 'windows-latest'
121+
if: matrix.os == 'windows-2016'
122122
run: |
123123
SET path=C:\castxml\bin;%path% || echo Failed to add castxml to path && exit \b
124-
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" || echo Failed to call vcvars64 && exit \b
124+
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat" || echo Failed to call vcvars64 && exit \b
125125
coverage run -m unittests.test_all || echo Test failure && exit \b
126126
coverage combine || echo coverage combine failed && exit \b
127127
coverage xml || echo Failed to generate xml coverage file && exit \b

unittests/configs/msvc.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
[xml_generator]
2-
compiler_path=C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29910/bin/Hostx64/x64/cl
2+
compiler=msvc
33
cflags=-std=c++14
4-
include_paths=C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/tools/MSVC/14.28.29910/include

0 commit comments

Comments
 (0)