|
3 | 3 | tests:
|
4 | 4 | name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.version }}-python-${{ matrix.python-version }}-${{ matrix.castxml-epic }}
|
5 | 5 | runs-on: ${{ matrix.os }}
|
6 |
| - |
| 6 | + defaults: |
| 7 | + run: |
| 8 | + shell: bash |
7 | 9 | strategy:
|
8 | 10 | fail-fast: false
|
9 | 11 | matrix:
|
@@ -64,34 +66,76 @@ jobs:
|
64 | 66 | castxml-epic: 0
|
65 | 67 | cppstd: "-std=c++98"
|
66 | 68 |
|
| 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 | + |
67 | 78 | steps:
|
68 | 79 | - uses: actions/checkout@v2
|
69 | 80 | - name: Set up Python ${{ matrix.python-version }}
|
70 | 81 | uses: actions/setup-python@v1
|
71 | 82 | with:
|
72 | 83 | python-version: ${{ matrix.python-version }}
|
| 84 | + |
73 | 85 | - name: Display Python version
|
74 | 86 | run: python -c "import sys; print(sys.version)"
|
| 87 | + |
75 | 88 | - name: Setup castxml for Linux
|
76 | 89 | if: matrix.os == 'ubuntu-18.04' && matrix.castxml == 'castxml'
|
77 | 90 | run: |
|
78 | 91 | wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/bdbb67a10c5f8d1b738cd19cb074f409d4803e8077cb8c1072ef4eaf738fa871a73643f9c8282d58cae28d188df842c82ad6620b6d590b0396a0172a27438dce/download | tar zxf - -C ~/
|
| 92 | +
|
79 | 93 | - name: Setup castxml for Mac
|
80 | 94 | if: matrix.os == 'macos-latest'
|
81 | 95 | run: |
|
82 | 96 | 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 |
84 | 106 | if: matrix.compiler == 'gcc' && matrix.version == '7'
|
85 | 107 | 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 | +
|
86 | 115 | - name: Install Python lib and test libs
|
87 | 116 | run: |
|
88 | 117 | 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 | + dir "C:\Program Files (x86)\" |
| 125 | + call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvars64.bat" ^ |
| 126 | + || echo Failed to source vcvars file && exit \b |
| 127 | + coverage run -m unittests.test_all || echo Test failure && exit \b |
| 128 | + coverage combine || echo coverage combine failed && exit \b |
| 129 | + coverage xml || echo Failed to generate xml coverage file && exit \b |
| 130 | +
|
| 131 | + - name: Run tests for Mac and Linux |
| 132 | + if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-18.04' |
90 | 133 | run: |
|
91 | 134 | export PATH=~/castxml/bin:$PATH
|
92 | 135 | coverage run -m unittests.test_all
|
93 | 136 | coverage combine
|
94 | 137 | coverage xml
|
| 138 | +
|
95 | 139 | - name: Upload coverage to Codecov
|
96 | 140 | uses: codecov/codecov-action@v1
|
97 | 141 | with:
|
|
0 commit comments