-
Notifications
You must be signed in to change notification settings - Fork 35
113 lines (98 loc) · 2.41 KB
/
push.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
name: test on push
on:
push:
paths-ignore:
- '*.md'
- 'ChangeLog'
- 'NEWS'
- 'README'
- 'COPYING'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check-workflows:
uses: ./.github/workflows/check-workflows.yml
build:
needs: check-workflows
strategy:
matrix:
os: ["ubuntu:24.04"]
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
run-test-other:
needs: build
strategy:
matrix:
test_name:
- "command-line-options"
- "data-rep"
- "i18n_sjis"
- "jp-compat"
- "run"
- "syntax"
- "cobj-idx"
- "misc"
os: ["ubuntu:24.04"]
uses: ./.github/workflows/test-other.yml
with:
test-name: ${{ matrix.test_name }}
os: ${{ matrix.os }}
run-test-cobj-api:
needs: build
strategy:
matrix:
os: ["ubuntu:24.04"]
uses: ./.github/workflows/test-cobj-api.yml
with:
os: ${{ matrix.os }}
run-test-nist:
needs: build
strategy:
matrix:
test_name: ["IC", "IF", "IX", "NC", "OB", "RL", "SG", "SM", "SQ", "ST"]
os: ["ubuntu:24.04"]
uses: ./.github/workflows/test-nist.yml
with:
test-name: ${{ matrix.test_name }}
check-result: true
os: ${{ matrix.os }}
run-test-nist-extra:
needs: build
strategy:
matrix:
test_name: ["CM", "DB", "RW"]
os: ["ubuntu:24.04"]
uses: ./.github/workflows/test-nist.yml
with:
test-name: ${{ matrix.test_name }}
check-result: false
os: ${{ matrix.os }}
build-gcc9:
needs: check-workflows
uses: ./.github/workflows/build-gcc9.yml
javadoc:
needs: check-workflows
uses: ./.github/workflows/javadoc.yml
check-missing-javadoc:
needs: check-workflows
uses: ./.github/workflows/check-missing-javadoc.yml
windows-build:
needs: check-workflows
uses: ./.github/workflows/windows-build.yml
with:
upload-artifacts: true
windows-test:
needs: windows-build
strategy:
matrix:
test_name: ["IC", "IF", "IX", "NC", "OB", "RL", "SG", "SM", "SQ", "ST"]
uses: ./.github/workflows/windows-test.yml
with:
test-name: ${{ matrix.test_name }}
static-analysis:
needs: check-workflows
uses: ./.github/workflows/static-analysis.yml