-
Notifications
You must be signed in to change notification settings - Fork 7
362 lines (361 loc) · 13.5 KB
/
main.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
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
name: Cuttlefish
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
CTEST_OUTPUT_ON_FAILURE: '1'
GTEST_OUTPUT: xml:${{ github.workspace }}/test-results/
cmake_common_args: >-
-DCUTTLEFISH_FORCE_INTERNAL_FREEIMAGE=ON
-DCMAKE_FIND_ROOT_PATH=${{ github.workspace }}/dependencies
-DCMAKE_PREFIX_PATH=${{ github.workspace }}/dependencies
-DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/build/cuttlefish
cores_count: '4'
cores_mac_count: '3'
dependency_location: "${{ github.workspace }}/dependencies"
gtest_version: v1.15.2
ispc_version: 1.25.3
test_results_location: "${{ github.workspace }}/test-results"
jobs:
Linux:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- lib_type: Static
cmake_args: "-DCUTTLEFISH_SHARED=OFF"
ispc: 0
- lib_type: Shared
cmake_args: "-DCUTTLEFISH_SHARED=ON"
ispc: 0
- lib_type: Static
cmake_args: "-DCUTTLEFISH_SHARED=OFF -DCUTTLEFISH_ISPC_PATH=/tmp/ispc/bin/ispc"
ispc: 1
- lib_type: Shared
cmake_args: "-DCUTTLEFISH_SHARED=ON -DCUTTLEFISH_ISPC_PATH=/tmp/ispc/bin/ispc"
ispc: 1
artifact: 1
steps:
- name: checkout
uses: actions/checkout@v4
- name: Download submodules
run: |-
git submodule update --init
sudo apt-get update
sudo apt-get -y install doxygen
if [ ${{ matrix.ispc }} -eq 1 ]; then
curl -L https://github.com/ispc/ispc/releases/download/v${{ env.ispc_version }}/ispc-v${{ env.ispc_version }}-linux.tar.gz -o ispc.tar.gz
tar xzf ispc.tar.gz
mv ispc-v${{ env.ispc_version }}-linux /tmp/ispc
fi
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: 5
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 }} ISPC:${{ matrix.ispc }} Debug)
junit_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: 5
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 }} ISPC:${{ matrix.ispc }} Release)
junit_files: "${{ env.test_results_location }}/*.xml"
- name: Package artifact
if: matrix.artifact == 1
run: |-
cmake --build Release --target install
tar czf cuttlefish-linux.tar.gz cuttlefish
working-directory: "${{ github.workspace }}/build"
- name: Publish artifact
if: matrix.artifact == 1
uses: actions/upload-artifact@v4
with:
name: Linux
path: "${{ github.workspace }}/build/cuttlefish-linux.tar.gz"
Mac:
runs-on: macos-latest
strategy:
matrix:
include:
- lib_type: Static
cmake_args: >-
-GXcode -DCUTTLEFISH_SHARED=OFF -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14
ispc: 0
- lib_type: Shared
cmake_args: >-
-GXcode -DCUTTLEFISH_SHARED=ON -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14
ispc: 0
- lib_type: Static
cmake_args: >-
-GXcode -DCUTTLEFISH_SHARED=OFF -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 -DCUTTLEFISH_ISPC_PATH=/tmp/ispc/bin/ispc
ispc: 1
- lib_type: Shared
cmake_args: >-
-GXcode -DCUTTLEFISH_SHARED=ON -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 -DCUTTLEFISH_ISPC_PATH=/tmp/ispc/bin/ispc
ispc: 1
artifact: 1
steps:
- name: checkout
uses: actions/checkout@v4
- name: Download submodules
run: |-
git submodule update --init
brew install doxygen
if [ ${{ matrix.ispc }} -eq 1 ]; then
curl -L https://github.com/ispc/ispc/releases/download/v${{ env.ispc_version }}/ispc-v${{ env.ispc_version }}-macOS.universal.tar.gz -o ispc.tar.gz
tar xzf ispc.tar.gz
mv ispc-v${{ env.ispc_version }}-macOS.universal /tmp/ispc
fi
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_OSX_ARCHITECTURES="arm64;x86_64" \
-DCMAKE_INSTALL_PREFIX=${{ env.dependency_location }}
cmake --build . -j ${{ env.cores_mac_count }}
cmake --build . --target install
working-directory: "${{ github.workspace }}"
- name: Run CMake
run: |-
mkdir build
cd build
cmake ${{ env.cmake_common_args }} ${{ matrix.cmake_args }} ${{ 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: 5
run: ctest -C Debug
working-directory: "${{ github.workspace }}/build"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/macos@v2
with:
check_name: Tests (Mac ${{ matrix.lib_type }} ISPC:${{ matrix.ispc }} Debug)
junit_files: "${{ env.test_results_location }}/*.xml"
- name: Clear test results
run: rm *.xml
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: 5
run: ctest -C Release
working-directory: "${{ github.workspace }}/build"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/macos@v2
with:
check_name: Tests (Mac ${{ matrix.lib_type }} ISPC:${{ matrix.ispc }} Release)
junit_files: "${{ env.test_results_location }}/*.xml"
- name: Fixup install path
run: cmake -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON ${{ github.workspace }}
working-directory: "${{ github.workspace }}/build"
- name: Package artifact
if: matrix.artifact == 1
run: |-
cmake --build . --config Release --target install
tar czf cuttlefish-mac.tar.gz cuttlefish
working-directory: "${{ github.workspace }}/build"
- name: Publish artifact
if: matrix.artifact == 1
uses: actions/upload-artifact@v4
with:
name: Mac
path: "${{ github.workspace }}/build/cuttlefish-mac.tar.gz"
Windows:
runs-on: windows-2019
strategy:
matrix:
include:
- arch: Win32
lib_type: Static
cmake_args: "-DCUTTLEFISH_SHARED=OFF"
shared_crt: ON
ispc: 0
- arch: Win32
lib_type: Shared
cmake_args: "-DCUTTLEFISH_SHARED=ON"
shared_crt: ON
ispc: 0
- arch: Win32
lib_type: Static
cmake_args: "-DCUTTLEFISH_SHARED=OFF -DCUTTLEFISH_STATIC_RUNTIME=ON -DCUTTLEFISH_ISPC_PATH=D:/ispc/bin/ispc.exe"
shared_crt: OFF
ispc: 1
artifact: win32-tool
- arch: Win32
lib_type: Shared
cmake_args: "-DCUTTLEFISH_SHARED=ON -DCUTTLEFISH_ISPC_PATH=D:/ispc/bin/ispc.exe"
shared_crt: ON
ispc: 1
artifact: win32-full
- arch: x64
lib_type: Static
cmake_args: "-DCUTTLEFISH_SHARED=OFF"
shared_crt: ON
ispc: 0
- arch: x64
lib_type: Shared
cmake_args: "-DCUTTLEFISH_SHARED=ON"
shared_crt: ON
ispc: 0
- arch: x64
lib_type: Static
cmake_args: "-DCUTTLEFISH_SHARED=OFF -DCUTTLEFISH_STATIC_RUNTIME=ON -DCUTTLEFISH_ISPC_PATH=D:/ispc/bin/ispc.exe"
shared_crt: OFF
ispc: 1
artifact: win64-tool
- arch: x64
lib_type: Shared
cmake_args: "-DCUTTLEFISH_SHARED=ON -DCUTTLEFISH_ISPC_PATH=D:/ispc/bin/ispc.exe"
shared_crt: ON
ispc: 1
artifact: win64-full
steps:
- name: checkout
uses: actions/checkout@v4
- name: Download submodules
run: |-
git submodule update --init
if [ ${{ matrix.ispc }} -eq 1 ]; then
curl -L https://github.com/ispc/ispc/releases/download/v${{ env.ispc_version }}/ispc-v${{ env.ispc_version }}-windows.zip -o ispc.zip
unzip ispc.zip
mv ispc-v${{ env.ispc_version }}-windows /d/ispc
fi
shell: bash
working-directory: "${{ github.workspace }}"
- 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=${{ matrix.shared_crt }} `
-A ${{ matrix.arch }} -T v141 -DCMAKE_DEBUG_POSTFIX=d
cmake --build . --config Debug
cmake --build . --config Debug --target install
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 }} -A ${{ matrix.arch }} -T v141 `
${{ 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: 5
run: 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 }} ISPC:${{ matrix.ispc }} Debug)
junit_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: 5
run: 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 }} ISPC:${{ matrix.ispc }} Release)
junit_files: "${{ env.test_results_location }}/*.xml"
- name: Package artifact
if: endsWith(matrix.artifact, '-full')
# Full package with debug and release.
run: |-
cmake --build . --config Debug --target install
cmake --build . --config Release --target install
7z a -tzip cuttlefish-${{ matrix.artifact }}.zip cuttlefish
working-directory: "${{ github.workspace }}/build"
- name: Package artifact
if: endsWith(matrix.artifact, '-tool')
# Only tool and supplemental DLLs.
run: |-
cmake --build . --config Release --target install
mv cuttlefish cuttlefish-full
mv cuttlefish-full\bin cuttlfish
7z a -tzip cuttlefish-${{ matrix.artifact }}.zip cuttlefish
working-directory: "${{ github.workspace }}/build"
- name: Publish artifact
if: matrix.artifact != ''
uses: actions/upload-artifact@v4
with:
name: "${{ matrix.artifact }}"
path: "${{ github.workspace }}/build/cuttlefish-${{ matrix.artifact }}.zip"
# vim: ts=2 sts=2 sw=2 et