-
Notifications
You must be signed in to change notification settings - Fork 9
225 lines (182 loc) · 6.37 KB
/
build.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
name: Build C2EO
on:
pull_request:
branches:
- master
jobs:
xcop:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: g4s8/xcop-action@master
pdd:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
# - uses: g4s8/pdd-action@master
cpplint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install cpplint
run: sudo pip install cpplint
- name: Cpplint
run: cpplint --filter=-runtime/references,-runtime/string,-build/c++11 project/src/transpiler/**
clang-format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Clang-format
uses: jidicula/[email protected]
with:
clang-format-version: '14'
check-path: 'project/src/transpiler'
fallback-style: 'Google'
clang-tidy:
needs: [cpplint, clang-format]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: MarkusJx/[email protected]
- name: Cache LLVM
uses: actions/cache@v3
with:
path: llvm-clang.tar.gz
key: ${{ runner.os }}-llvm-clang
- name: Unpack LLVM
run: sudo chmod ugo+rwx llvm-clang.tar.gz && tar -xvf llvm-clang.tar.gz -C . > /dev/null
- name: Install clang-tidy
run: sudo apt install clang-tidy
- name: Clang-tidy
run: |
cd ./project/scripts
python3 clang_tidy.py -h
python3 clang_tidy.py
gcc-c-torture:
needs: [cpplint, clang-format]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: MarkusJx/[email protected]
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v3
with:
path: llvm-clang.tar.gz
key: ${{ runner.os }}-llvm-clang
- name: Unpack LLVM
run: sudo chmod ugo+rwx llvm-clang.tar.gz && tar -xvf llvm-clang.tar.gz -C . > /dev/null
- name: Download gcc-c-torture
uses: robinraju/[email protected]
with:
repository: "polystat/c2eo"
tag: "0.1.16"
fileName: "gcc.c-torture.tar.gz"
- name: Unpack gcc-c-torture
run: tar -xvf gcc.c-torture.tar.gz -C . > /dev/null
- name: Transpilation
run: |
cd ./project/scripts
python3 transpile.py -h
python3 transpile.py ../../gcc.c-torture -s gcc -n
c-testcuite:
needs: [cpplint, clang-format]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: MarkusJx/[email protected]
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v3
with:
path: llvm-clang.tar.gz
key: ${{ runner.os }}-llvm-clang
- name: Unpack LLVM
run: sudo chmod ugo+rwx llvm-clang.tar.gz && tar -xvf llvm-clang.tar.gz -C . > /dev/null
- name: Download c-testcuite
uses: robinraju/[email protected]
with:
repository: "polystat/c2eo"
tag: "0.1.16"
fileName: "c-testcuite.tar.gz"
- name: Unpack c-testcuite
run: tar -xvf c-testcuite.tar.gz -C . > /dev/null
- name: Testing
run: |
cd ./project/scripts
python3 test.py -h
python3 test.py -p ../../c-testcuite -s testcuite -n -c
- name: Convert raw code coverage to report
run: |
cd ./project/bin/
llvm-profdata-14 merge -sparse *.profraw -o res.profdata
llvm-cov-14 show ./c2eo ../src/transpiler/*.cpp -instr-profile=res.profdata > codecov.txt
- uses: actions/upload-artifact@v3
with:
name: testcuite
path: project/bin/codecov.txt
test_main:
needs: [cpplint, clang-format]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: MarkusJx/[email protected]
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v3
with:
path: llvm-clang.tar.gz
key: ${{ runner.os }}-llvm-clang
- name: Unpack LLVM
run: sudo chmod ugo+rwx llvm-clang.tar.gz && tar -xvf llvm-clang.tar.gz -C . > /dev/null
- name: Testing
run: |
cd ./project/scripts
python3 test.py -h
python3 test.py -s test -c
- name: Convert raw code coverage to report
run: |
cd ./project/bin/
llvm-profdata-14 merge -sparse *.profraw -o res.profdata
llvm-cov-14 show ./c2eo ../src/transpiler/*.cpp -instr-profile=res.profdata > codecov.txt
- uses: actions/upload-artifact@v3
with:
name: main
path: project/bin/codecov.txt
unit-tests:
needs: [cpplint, clang-format]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: MarkusJx/[email protected]
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v3
with:
path: llvm-clang.tar.gz
key: ${{ runner.os }}-llvm-clang
- name: Unpack LLVM
run: sudo chmod ugo+rwx llvm-clang.tar.gz && tar -xvf llvm-clang.tar.gz -C . > /dev/null
- name: Build c2eo
run: cd ./project/scripts && python3 build_c2eo.py
- name: Unit testing
run: cd ./project/bin/ && ./unit_tests --gtest_filter=*
codecov:
needs: [clang-tidy, gcc-c-torture, c-testcuite, test_main, unit-tests]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: mkdir project/bin/
- name: Download test main codecov report
uses: actions/download-artifact@v3
with:
name: main
path: project/bin/main/
- name: Download testcuite codecov report
uses: actions/download-artifact@v3
with:
name: testcuite
path: project/bin/testcuite/
- uses: codecov/codecov-action@v4
with:
files: ./project/bin/main/codecov.txt,./project/bin/testcuite/codecov.txt