-
-
Notifications
You must be signed in to change notification settings - Fork 6
448 lines (431 loc) · 12.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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
name: GitHub Actions
on:
pull_request:
branches:
- master
- develop
- 'feature/**'
- 'fix/**'
- 'gh/**'
- 'github/**'
- 'githubactions/**'
paths-ignore:
- '*.ini'
- '*.md'
- '*.yml'
- '*.yaml'
- '.circleci/**'
- '.semaphore/**'
push:
branches:
- master
- develop
jobs:
prepare:
runs-on: ubuntu-latest
env:
HEAD_COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
if: >
! contains(github.event.head_commit.message, '[gh skip]') &&
! contains(github.event.head_commit.message, '[skip gh]')
steps:
- run: |
echo "$HEAD_COMMIT_MESSAGE"
# dump github.event for https://github.com/nektos/act
- name: dump github.event
env:
GITHUB_EVENT_CONTEXT: ${{ toJson(github.event) }}
run: |
echo "${GITHUB_EVENT_CONTEXT}" > github_event.json
- name: store event
uses: actions/upload-artifact@v3
with:
name: github_event.json
path: github_event.json
login:
runs-on: ubuntu-latest
needs: prepare
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: login check
run: |
echo a | docker login
- name: TODO
run: |
echo "build and push"
#===================================================================
llvm-basic-test:
runs-on: windows-latest
needs: prepare
defaults:
run:
shell: cmd
env:
CXX: clang++
CC: clang
OUTPUTXML: junit
steps:
- uses: actions/checkout@v3
- name: Setup Windows LLVM
uses: ./.github/actions/composite/setup-win-llvm
- name: info
uses: ./.github/actions/composite/test-info
- name: llvm clang build
run: |
make -C test -j8
- name: llvm clang test
run: |
make -C test test
- name: report
uses: ./.github/actions/composite/test-report
with:
report_paths: test/*.xml
if: always()
mingw-basic-test:
runs-on: windows-latest
needs: prepare
defaults:
run:
shell: cmd
env:
OUTPUTXML: junit
steps:
- uses: actions/checkout@v3
- name: info
uses: ./.github/actions/composite/test-info
- name: mingw build
run: |
make -C test -j8
- name: mingw test
run: |
make -C test test
- name: report
uses: ./.github/actions/composite/test-report
with:
report_paths: test/*.xml
if: always()
cmake-basic-test:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@master
- name: cmake
run: |
mkdir ./cmake-build
cd ./cmake-build
cmake ../projects/cmake
- name: cmake build
run: cmake --build cmake-build
- name: cmake test
run: |
cd cmake-build
ctest -C Debug -V
xcodebuild-test:
runs-on: macos-latest
needs: prepare
steps:
- uses: actions/checkout@master
- name: cmake
run: |
mkdir ./cmake-build
cd ./cmake-build
cmake -G Xcode ../projects/cmake
- name: cmake build
run: cmake --build cmake-build -- -resultBundlePath TestResults
- name: cmake test
run: |
cd cmake-build
ctest -C Debug -V
- run: ls cmake-build
- uses: kishikawakatsumi/xcresulttool@v1.0.3
with:
path: cmake-build/TestResults.xcresult
if: success() || failure()
# # g++: fatal error: Killed signal terminated program cc1plus
# # kill されちゃうので comment out
# gcc-fanalyzer:
# runs-on: ubuntu-latest
# needs: prepare
# container:
# image: gcc:11
# credentials:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# env:
# DEFS: -fanalyzer -Wno-analyzer-possible-null-argument -Wno-analyzer-possible-null-dereference
# OUTPUTXML: junit
# steps:
# - uses: actions/checkout@master
# - name: gcc info
# run: |
# make -C test clean
# make -C test showcxxversion
# make -C test showcxxmacros
# make -C test check_stdlib
# - name: gcc build
# run: |
# # If you increase the number of parallels (-jN), it will be SIGKILL(137).
# make -C test -j1
# - name: gcc test
# run: |
# make -C test test
# - name: report
# uses: ./.github/actions/composite/test-report
# with:
# report_paths: test/*.xml
# if: always()
# zapcc-basic-test:
# runs-on: ubuntu-latest
# needs: prepare
# container:
# image: srzzumix/zapcc:latest
# credentials:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# env:
# OUTPUTXML: junit
# PYTHON_VERSION: 3.8
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: ${{ env.PYTHON_VERSION }}
# - name: Set Python environment variable
# run: |
# python --version
# echo "LD_LIBRARY_PATH=${{ env.pythonLocation }}/lib" >> "$GITHUB_ENV"
# - name: info
# uses: ./.github/actions/composite/test-info
# - name: zapcc build
# run: |
# make -C test -j1 IUTEST_REQUIRE_PYTHON=1
# - name: zapcc test
# run: |
# make -C test test
# - name: report
# uses: ./.github/actions/composite/test-report
# with:
# report_paths: test/*.xml
# if: always()
icpc-basic-test:
runs-on: ubuntu-latest
needs: prepare
container:
image: srzzumix/oneapi-cxx:latest
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
env:
CC: icpc
CXX: icpc
OUTPUTXML: junit
# DEFS: -DIUTEST_FORCE_COLORCONSOLE=1
# RUN_OPTION: "--iutest_color=yes"
defaults:
run:
shell: bash -e -o pipefail -l {0}
steps:
- uses: actions/checkout@v3
- name: set .bash_profile
run: |
echo ". /opt/intel/oneapi/setvars.sh" >> ~/.bash_profile
- name: info
uses: ./.github/actions/composite/test-info
with:
shell-cmd: bash -e -o pipefail -l {0}
- name: icpc build
run: |
make -C test -j8
- name: icpc test
run: |
make -C test test
- name: report
uses: ./.github/actions/composite/test-report
with:
report_paths: test/*.xml
if: always()
arm-none-eabi:
strategy:
fail-fast: false
matrix:
container-version:
- "6-2016q4"
- "7-2017q4"
- "8-2018q4"
- "9-2019q4"
- "10-2020q4"
- "latest"
runs-on: ubuntu-latest
needs: prepare
container:
image: srzzumix/arm-none-eabi:${{ matrix.container-version }}
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
env:
DEFS: --specs=nosys.specs -march=armv8-a
LIBS: gcc c m nosys
# DEFS: --specs=rdimon.specs -march=armv8-a
# LIBS: gcc c m rdimon
OUTPUTXML: junit
steps:
- uses: actions/checkout@v3
- name: info
uses: ./.github/actions/composite/test-info
- name: build
run: |
make -C test -j8
- name: report
uses: ./.github/actions/composite/test-report
with:
report_paths: test/*.xml
if: always()
arm-linux-gnueabi:
runs-on: ubuntu-latest
needs: prepare
env:
DEFS: --static
OUTPUTXML: junit
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/checkout@v3
- name: info
uses: ./.github/actions/arm-linux-gnueabi
with:
args: "make -C test QEMU_COMMAND=qemu-arm-static showcxxversion showcxxmacros check_stdlib showstdlbfeatures"
- name: build
uses: ./.github/actions/arm-linux-gnueabi
with:
args: "make -C test -j8"
- name: test
uses: ./.github/actions/arm-linux-gnueabi
with:
args: "make -C test test QEMU_COMMAND=qemu-arm-static"
- name: report
uses: ./.github/actions/composite/test-report
with:
report_paths: test/*.xml
if: always()
#===================================================================
earthly:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: earthly/actions-setup@v1
with:
version: "latest"
- uses: actions/checkout@v3
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build
run: earthly +build
- name: Test
run: earthly +test
# FIXME: expected array of testsuites
# - name: Report
# uses: ./.github/actions/composite/test-report
# with:
# report_paths: earthly-out/TestResults/*.xml
# if: always()
#===================================================================
dagger:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v3
- uses: dagger/dagger-for-github@v3
with:
cmds: |
project init
project update
do ctest
# FIXME: expected array of testsuites
# - name: Report
# uses: ./.github/actions/composite/test-report
# with:
# report_paths: dagger-out/TestResults/*.xml
# if: always()
#===================================================================
infer:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v3
- uses: srz-zumix/setup-infer@v1
- name: infer
run: |
infer -- make -C test IUTEST_USE_PYTHON=0
- name: Check Infer report
uses: srz-zumix/reviewdog-action-infer@v1
with:
reporter: github-pr-review
#===================================================================
clang-tidy:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v2
- uses: reviewdog/action-setup@v1
- name: install clang-tidy
run: |
sudo apt-get install -qq -y clang-tidy
- name: clang-tidy info
run: |
clang-tidy --version
# clang-tidy -list-checks --config-file=.clang-tidy
clang-tidy -list-checks -checks=*,-llvm-namespace-comment,-cppcoreguidelines-macro-usage,-modernize-use-trailing-return-type,-llvm-include-order,-clang-analyzer-*
- name: cmake
run: |
mkdir ./cmake-build
cd ./cmake-build
cmake ../projects/cmake -Dbuild_for_clang_tidy=ON
- name: cmake build clang-tidy
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cmake --build cmake-build | reviewdog -reporter=github-pr-review -name="clang-tidy" -efm="%f:%l:%c: %m" -tee
#===================================================================
lint-editorconfig:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v1
- name: lint:editorconfig
run: |
npm install
npm run lint:editorconfig
iwyu:
runs-on: ubuntu-latest
container:
image: srzzumix/iwyu:latest
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
needs: lint-editorconfig
steps:
- uses: actions/checkout@v3
- name: CMake
env:
CC: clang
CXX: clang++
run: |
clang --version
mkdir ./cmake-build
cd ./cmake-build
cmake -DCMAKE_C_COMPILER="${CC}" -DCMAKE_CXX_COMPILER="${CXX}" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-Dbuild_namespace_tests=OFF -Dbuild_for_iwyu=ON ../projects/cmake
- name: Include What You Use
run: |
iwyu_tool.py -j2 -p ./cmake-build -- -Xiwyu --no_fwd_decls -Xiwyu --mapping_file=/opt/iwyu/gcc.symbols.imp