-
Notifications
You must be signed in to change notification settings - Fork 0
260 lines (259 loc) · 9.48 KB
/
main.yml
File metadata and controls
260 lines (259 loc) · 9.48 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
name: ModularShaderLanguage
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
CTEST_OUTPUT_ON_FAILURE: '1'
GTEST_OUTPUT: xml:${{ github.workspace }}/test-results/
boost_version: 1.90.0
cmake_common_args: >-
-DCMAKE_FIND_ROOT_PATH=${{ github.workspace }}/dependencies
-DCMAKE_PREFIX_PATH=${{ github.workspace }}/dependencies
cores_count: '4'
cores_mac_count: '3'
dependency_location: "${{ github.workspace }}/dependencies"
gtest_version: v1.17.0
msvc_version: 14.2
msvc_toolset: 142
test_results_location: "${{ github.workspace }}/test-results"
jobs:
Linux:
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- lib_type: Static
cmake_args: "-DMSL_SHARED=OFF"
- lib_type: Shared
cmake_args: "-DMSL_SHARED=ON"
steps:
- name: checkout
uses: actions/checkout@v6
- name: Download submodules
run: |-
git submodule update --init --recursive
# Need system boost for static libs.
sudo apt-get update
sudo apt-get -y install libboost-all-dev
working-directory: "${{ github.workspace }}"
- name: Build gtest
run: |-
git clone https://github.com/google/googletest.git googletest-code
cd googletest-code
git checkout ${{ env.gtest_version }}
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{ env.dependency_location }}
cmake --build . -j ${{ env.cores_count }}
cmake --build . --target install
working-directory: "${{ github.workspace }}"
- name: Build debug
run: |-
mkdir -p build/Debug
cd build/Debug
cmake -DCMAKE_BUILD_TYPE=Debug ${{ env.cmake_common_args }} ${{ matrix.cmake_args }} \
${{ github.workspace }}
cmake --build . -j ${{ env.cores_count }}
working-directory: "${{ github.workspace }}"
- name: Run tests debug
continue-on-error: true
timeout-minutes: 10
run: ctest
working-directory: "${{ github.workspace }}/build/Debug"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
check_name: Tests (Linux ${{ matrix.lib_type }} Debug)
files: "${{ env.test_results_location }}/*.xml"
- name: Clear test results
run: rm *.xml
working-directory: "${{ env.test_results_location }}"
- name: Build release
run: |-
mkdir -p build/Release
cd build/Release
cmake -DCMAKE_BUILD_TYPE=Release ${{ env.cmake_common_args }} ${{ matrix.cmake_args }} \
${{ github.workspace }}
cmake --build . -j ${{ env.cores_count }}
working-directory: "${{ github.workspace }}"
- name: Run tests release
continue-on-error: true
timeout-minutes: 10
run: ctest
working-directory: "${{ github.workspace }}/build/Release"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
check_name: Tests (Linux ${{ matrix.lib_type }} Release)
files: "${{ env.test_results_location }}/*.xml"
Mac:
runs-on: macos-latest
strategy:
matrix:
include:
# TODO: Try re-enabling if ICU issue fixed with static linking.
# - lib_type: Static
# cmake_args: "-DMSL_SHARED=OFF"
- lib_type: Shared
cmake_args: "-DMSL_SHARED=ON"
steps:
- name: checkout
uses: actions/checkout@v6
- name: Download submodules
run: |-
git submodule update --init --recursive
brew install boost
working-directory: "${{ github.workspace }}"
- name: Build gtest
run: |-
git clone https://github.com/google/googletest.git googletest-code
cd googletest-code
git checkout ${{ env.gtest_version }}
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{ env.dependency_location }}
cmake --build . -j ${{ env.cores_mac_count }}
cmake --build . --target install
working-directory: "${{ github.workspace }}"
- name: Build debug
run: |-
mkdir -p build/Debug
cd build/Debug
cmake -DCMAKE_BUILD_TYPE=Debug ${{ env.cmake_common_args }} ${{ matrix.cmake_args }} \
${{ github.workspace }}
cmake --build . -j ${{ env.cores_mac_count }}
working-directory: "${{ github.workspace }}"
- name: Run tests debug
continue-on-error: true
timeout-minutes: 10
run: ctest
working-directory: "${{ github.workspace }}/build/Debug"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/macos@v2
with:
check_name: Tests (Mac ${{ matrix.lib_type }} Debug)
files: "${{ env.test_results_location }}/*.xml"
- name: Clear test results
run: rm *.xml
working-directory: "${{ env.test_results_location }}"
- name: Build release
run: |-
mkdir -p build/Release
cd build/Release
cmake -DCMAKE_BUILD_TYPE=Release ${{ env.cmake_common_args }} ${{ matrix.cmake_args }} \
${{ github.workspace }}
cmake --build . -j ${{ env.cores_mac_count }}
working-directory: "${{ github.workspace }}"
- name: Run tests release
continue-on-error: true
timeout-minutes: 10
run: ctest
working-directory: "${{ github.workspace }}/build/Release"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/macos@v2
with:
check_name: Tests (Mac ${{ matrix.lib_type }} Release)
files: "${{ env.test_results_location }}/*.xml"
Windows:
runs-on: windows-2025
strategy:
matrix:
include:
- arch: Win32
bits: 32
lib_type: Static
cmake_args: "-DMSL_SHARED=OFF"
- arch: Win32
bits: 32
lib_type: Shared
cmake_args: "-DMSL_SHARED=ON"
- arch: x64
bits: 64
lib_type: Static
cmake_args: "-DMSL_SHARED=OFF"
- arch: x64
bits: 64
lib_type: Shared
cmake_args: "-DMSL_SHARED=ON"
steps:
- name: checkout
uses: actions/checkout@v6
- name: Download submodules
run: git submodule update --init --recursive
shell: bash
working-directory: "${{ github.workspace }}"
- name: Download boost
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 5
command: |-
$underscoreVersion = "${{ env.boost_version }}".replace(".", "_")
$url = "https://psychz.dl.sourceforge.net/project/boost/boost-binaries/${{ env.boost_version }}/boost_$underscoreVersion-msvc-${{ env.msvc_version }}-${{ matrix.bits }}.exe"
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP\boost.exe")
Start-Process -Wait -FilePath "$env:TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=D:\boost"
- name: Checkout gtest
run: |-
git clone https://github.com/google/googletest.git googletest-code
cd googletest-code
git checkout ${{ env.gtest_version }}
mkdir build
shell: bash
working-directory: "${{ github.workspace }}"
- name: Build gtest
run: |-
cmake .. -DCMAKE_INSTALL_PREFIX=${{ env.dependency_location }} -Dgtest_force_shared_crt=ON `
-A ${{ matrix.arch }} -T v${{ env.msvc_toolset }} -DCMAKE_DEBUG_POSTFIX=d
cmake --build . --config Debug
cmake --build . --config Debug --target install
# Need to also install release build to find the debug version.
cmake --build . --config Release
cmake --build . --config Release --target install
working-directory: "${{ github.workspace }}/googletest-code/build"
- name: Run CMake
run: |-
mkdir build
cd build
cmake ${{ env.cmake_common_args }} ${{ matrix.cmake_args }} `
-DBoost_DIR=D:/boost/lib${{ matrix.bits }}-msvc-${{ env.msvc_version }}/cmake/Boost-${{ env.boost_version }} -A ${{ matrix.arch }} `
-T v${{ env.msvc_toolset }} ${{ github.workspace }}
working-directory: "${{ github.workspace }}"
- name: Build debug
run: cmake --build . --config Debug
working-directory: "${{ github.workspace }}/build"
- name: Run tests debug
continue-on-error: true
timeout-minutes: 10
run: |-
$env:Path += ";D:\\boost\\lib${{ matrix.bits }}-msvc-${{ env.msvc_version }}"
ctest -C Debug
working-directory: "${{ github.workspace }}/build"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
with:
check_name: Tests (Windows ${{ matrix.arch }} ${{ matrix.lib_type }} Debug)
files: "${{ env.test_results_location }}/*.xml"
- name: Clear test results
run: rm *.xml
shell: bash
working-directory: "${{ env.test_results_location }}"
- name: Build release
run: cmake --build . --config Release
working-directory: "${{ github.workspace }}/build"
- name: Run tests release
continue-on-error: true
timeout-minutes: 10
run: |-
$env:Path += ";D:\\boost\\lib${{ matrix.bits }}-msvc-${{ env.msvc_version }}"
ctest -C Release
working-directory: "${{ github.workspace }}/build"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
with:
check_name: Tests (Windows ${{ matrix.arch }} ${{ matrix.lib_type }} Release)
files: "${{ env.test_results_location }}/*.xml"
# vim: ts=2 sts=2 sw=2 et