-
Notifications
You must be signed in to change notification settings - Fork 9
178 lines (146 loc) · 4.75 KB
/
Copy pathbuild.yml
File metadata and controls
178 lines (146 loc) · 4.75 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
# SPDX-FileCopyrightText: Copyright (c) 2021-2022 Polystat.org
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: build
'on':
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
pdd:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
# - uses: g4s8/pdd-action@master
cpplint:
runs-on: ubuntu-24.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 src/transpiler/**
clang-format:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Clang-format
uses: jidicula/clang-format-action@v4.13.0
with:
clang-format-version: '14'
check-path: 'src/transpiler'
fallback-style: 'Google'
clang-tidy:
needs: [cpplint, clang-format]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: ./.github/actions/llvm
- name: Clang-tidy
run: |
cd ./scripts
python3 clang_tidy.py -h
python3 clang_tidy.py
gcc-c-torture:
needs: [cpplint, clang-format]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: ./.github/actions/llvm
- name: Download gcc-c-torture
uses: robinraju/release-downloader@v1.11
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 ./scripts
python3 transpile.py -h
python3 transpile.py ../gcc.c-torture -s gcc -n
c-testcuite:
needs: [cpplint, clang-format]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: ./.github/actions/llvm
- name: Download c-testcuite
uses: robinraju/release-downloader@v1.11
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 ./scripts
python3 test.py -h
python3 test.py -p ../c-testcuite -s testcuite -n -c
- name: Convert raw code coverage to report
run: |
cd ./bin/
llvm-profdata-16 merge -sparse ./*.profraw -o res.profdata
llvm-cov-16 show ./c2eo ../src/transpiler/*.cpp -instr-profile=res.profdata > codecov.txt
- uses: actions/upload-artifact@v4
with:
name: testcuite
path: bin/codecov.txt
test_main:
needs: [cpplint, clang-format]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: ./.github/actions/llvm
- name: Testing
run: |
cd ./scripts
python3 test.py -h
python3 test.py -s test -c
- name: Convert raw code coverage to report
run: |
cd ./bin/
llvm-profdata-16 merge -sparse ./*.profraw -o res.profdata
llvm-cov-16 show ./c2eo ../src/transpiler/*.cpp -instr-profile=res.profdata > codecov.txt
- uses: actions/upload-artifact@v4
with:
name: main
path: bin/codecov.txt
unit-tests:
needs: [cpplint, clang-format]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: ./.github/actions/llvm
- name: Build c2eo
run: cd ./scripts && python3 build_c2eo.py
- name: Unit testing
run: cd ./bin/ && ./unit_tests --gtest_filter=*
codecov:
needs: [clang-tidy, gcc-c-torture, c-testcuite, test_main, unit-tests]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: mkdir bin/
- name: Download test main codecov report
uses: actions/download-artifact@v4
with:
name: main
path: bin/main/
- name: Download testcuite codecov report
uses: actions/download-artifact@v4
with:
name: testcuite
path: bin/testcuite/
- uses: codecov/codecov-action@v5
with:
files: ./bin/main/codecov.txt,./bin/testcuite/codecov.txt