Skip to content

Commit 389661b

Browse files
committed
Add windows ci
1 parent aa5920c commit 389661b

File tree

3 files changed

+49
-8
lines changed

3 files changed

+49
-8
lines changed

.github/workflows/tests.yml

+45-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ jobs:
33
tests:
44
name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.version }}-python-${{ matrix.python-version }}-${{ matrix.castxml-epic }}
55
runs-on: ${{ matrix.os }}
6-
6+
defaults:
7+
run:
8+
shell: bash
79
strategy:
810
fail-fast: false
911
matrix:
@@ -64,34 +66,74 @@ jobs:
6466
castxml-epic: 0
6567
cppstd: "-std=c++98"
6668

69+
- os: windows-latest
70+
compiler: msvc
71+
version: "default"
72+
python-version: 3.8
73+
castxml: "castxml"
74+
castxml-epic: 1
75+
cppstd: "-std=c++11"
76+
77+
6778
steps:
6879
- uses: actions/checkout@v2
6980
- name: Set up Python ${{ matrix.python-version }}
7081
uses: actions/setup-python@v1
7182
with:
7283
python-version: ${{ matrix.python-version }}
84+
7385
- name: Display Python version
7486
run: python -c "import sys; print(sys.version)"
87+
7588
- name: Setup castxml for Linux
7689
if: matrix.os == 'ubuntu-18.04' && matrix.castxml == 'castxml'
7790
run: |
7891
wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/bdbb67a10c5f8d1b738cd19cb074f409d4803e8077cb8c1072ef4eaf738fa871a73643f9c8282d58cae28d188df842c82ad6620b6d590b0396a0172a27438dce/download | tar zxf - -C ~/
92+
7993
- name: Setup castxml for Mac
8094
if: matrix.os == 'macos-latest'
8195
run: |
8296
wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/5d937e938f7b882a3a3e7941e68f8312d0898aaf2082e00003dd362b1ba70b98b0a08706a1be28e71652a6a0f1e66f89768b5eaa20e5a100592d5b3deefec3f0/download | tar zxf - -C ~/
83-
- name: Setup castxml config
97+
98+
- name: Setup castxml for Windows
99+
if: matrix.os == 'windows-latest'
100+
shell: cmd
101+
run: |
102+
curl https://data.kitware.com/api/v1/file/hashsum/sha512/bdd1e2c3b203019f758681067bb4dd68cb37abc930fee6b4b5d181bd805236352f888d061f32c7f93bde2eac2caa1265b93bbccff6656f98989dafd08f55847b/download --output castxml.zip
103+
powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('castxml.zip', 'C:\'); }"
104+
105+
- name: Setup castxml config for gcc
84106
if: matrix.compiler == 'gcc' && matrix.version == '7'
85107
run: mv unittests/configs/gcc7.cfg unittests/xml_generator.cfg;
108+
109+
- name: Setup castxml config for msvc
110+
if: matrix.compiler == 'msvc'
111+
shell: cmd
112+
run: |
113+
move unittests\configs\msvc.cfg unittests\xml_generator.cfg;
114+
86115
- name: Install Python lib and test libs
87116
run: |
88117
pip install .[test]
89-
- name: Run tests
118+
119+
- name: Run tests for Windows
120+
shell: cmd
121+
if: matrix.os == 'windows-latest'
122+
run: |
123+
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
125+
coverage run -m unittests.test_all || echo Test failure && exit \b
126+
coverage combine || echo coverage combine failed && exit \b
127+
coverage xml || echo Failed to generate xml coverage file && exit \b
128+
129+
- name: Run tests for Mac and Linux
130+
if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-18.04'
90131
run: |
91132
export PATH=~/castxml/bin:$PATH
92133
coverage run -m unittests.test_all
93134
coverage combine
94135
coverage xml
136+
95137
- name: Upload coverage to Codecov
96138
uses: codecov/codecov-action@v1
97139
with:

unittests/configs/appveyor.cfg

-5
This file was deleted.

unittests/configs/msvc.cfg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[xml_generator]
2+
compiler_path=C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29910/bin/Hostx64/x64/cl
3+
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)