-
Notifications
You must be signed in to change notification settings - Fork 41
179 lines (176 loc) · 5.2 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: tests
on:
push:
pull_request:
# TODO: Check different standards?
# TODO: Re-enable testing in release
jobs:
test-linux:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
compiler: [g++-10, clang++-14]
cxx_version: [ cxx_std_17, cxx_std_20 ]
target: [Debug]
shared: [ON, OFF]
steps:
- uses: actions/checkout@v2
- name: dependencies
run: |
sudo apt install gcc-10 g++-10 libgcc-10-dev
python3 -m pip install git+https://github.com/jeffkaufman/icdiff.git
- name: build
run: |
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=${{matrix.target}} \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DLIBASSERT_DESIRED_CXX_STANDARD="${{matrix.cxx_version}}" \
-DLIBASSERT_BUILD_SHARED=${{matrix.shared}} \
-DCPPTRACE_BUILD_SHARED=ON \
-DLIBASSERT_BUILD_TESTING=On \
-DLIBASSERT_WERROR_BUILD=On
make -j
- name: test
working-directory: build
run: |
CTEST_OUTPUT_ON_FAILURE=1 make test
test-linux-gcc-8:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
compiler: [g++-8]
target: [Debug]
steps:
- uses: actions/checkout@v2
- name: dependencies
run: |
sudo apt install gcc-8 g++-8 libgcc-8-dev
python3 -m pip install git+https://github.com/jeffkaufman/icdiff.git
- name: build
run: |
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=${{matrix.target}} \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DLIBASSERT_BUILD_TESTING=On \
-DLIBASSERT_WERROR_BUILD=On
make -j
- name: test
working-directory: build
run: |
CTEST_OUTPUT_ON_FAILURE=1 make test
test-macos:
runs-on: macos-14
strategy:
fail-fast: false
matrix:
compiler: [g++-12, clang++]
cxx_version: [ cxx_std_17, cxx_std_20 ]
target: [Debug]
shared: [ON, OFF]
steps:
- uses: actions/checkout@v2
- name: dependencies
run: |
brew install icdiff
- name: build
run: |
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=${{matrix.target}} \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DLIBASSERT_DESIRED_CXX_STANDARD="${{matrix.cxx_version}}" \
-DCPPTRACE_BUILD_SHARED=ON \
-DLIBASSERT_BUILD_TESTING=On \
-DLIBASSERT_WERROR_BUILD=On
make -j
- name: test
working-directory: build
run: |
CTEST_OUTPUT_ON_FAILURE=1 make test
test-windows:
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
compiler: [cl, clang++]
cxx_version: [ cxx_std_17, cxx_std_20 ]
target: [Debug]
shared: [ON, OFF]
steps:
- uses: actions/checkout@v2
- name: Enable Developer Command Prompt
uses: ilammy/[email protected]
- name: dependencies
run: |
pip install icdiff
- name: build msvc
# if: ${{ matrix.compiler == 'cl' }}
run: |
mkdir -p build
cd build
cmake .. `
-DCMAKE_BUILD_TYPE=${{matrix.target}} `
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} `
-DLIBASSERT_DESIRED_CXX_STANDARD="${{matrix.cxx_version}}" `
-DCPPTRACE_BUILD_SHARED=ON `
-DLIBASSERT_BUILD_TESTING=On `
-DLIBASSERT_WERROR_BUILD=On
msbuild .\libassert.sln
# - name: build clang
# if: ${{ matrix.compiler == 'clang++' }}
# run: |
# mkdir -p build
# cd build
# cmake .. `
# -DCMAKE_BUILD_TYPE=${{matrix.target}} `
# -DCMAKE_CXX_COMPILER="C:\msys64\mingw64\bin\clang++" `
# -DCMAKE_C_COMPILER="C:\msys64\mingw64\bin\clang" `
# -DLIBASSERT_BUILD_TESTING=On \
# -DLIBASSERT_WERROR_BUILD=On
# msbuild .\libassert.sln
- name: test
working-directory: build
run: |
ctest -C ${{matrix.target}} --output-on-failure
test-mingw:
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
compiler: [g++]
cxx_version: [ cxx_std_17, cxx_std_20 ]
target: [Debug]
shared: [ON, OFF]
steps:
- uses: actions/checkout@v2
- name: Enable Developer Command Prompt
uses: ilammy/[email protected]
- name: dependencies
run: |
pip install icdiff
- name: build
run: |
mkdir -p build
cd build
cmake .. `
-DCMAKE_BUILD_TYPE=${{matrix.target}} `
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} `
-DLIBASSERT_DESIRED_CXX_STANDARD="${{matrix.cxx_version}}" `
-DCPPTRACE_BUILD_SHARED=ON `
-DLIBASSERT_BUILD_TESTING=On `
-DLIBASSERT_USE_CI_WRAPPER=On `
"-GUnix Makefiles" `
-DLIBASSERT_WERROR_BUILD=On
make -j
- name: test
working-directory: build
run: |
$env:CTEST_OUTPUT_ON_FAILURE=1
make test