-
Notifications
You must be signed in to change notification settings - Fork 0
258 lines (228 loc) · 7.39 KB
/
ci.yml
File metadata and controls
258 lines (228 loc) · 7.39 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
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
name: CI
on:
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
checks: write
pull-requests: write
jobs:
lint-cpp:
name: C++ Lint (clang-format + clang-tidy)
runs-on: ubuntu-22.04
env:
CARGO_TERM_COLOR: always
CLANG_FORMAT_BIN: clang-format-18
steps:
- name: Checkout (with submodules)
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Install system dependencies
shell: bash
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends ca-certificates wget
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc >/dev/null
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" | sudo tee /etc/apt/sources.list.d/llvm-18.list >/dev/null
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
cmake \
ninja-build \
clang-format-18 \
clang-tidy
- name: Set up Rust (stable)
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Configure (CMake, compile commands)
shell: bash
run: |
set -euo pipefail
cmake -S . -B build -G Ninja -DTEMPOCH_BUILD_DOCS=OFF -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: clang-format check
shell: bash
run: |
set -euo pipefail
./clang_format.sh --check --no-diff
- name: clang-tidy check
shell: bash
run: |
set -euo pipefail
mapfile -t cpp_files < <(git ls-files '*.cpp')
if [ ${#cpp_files[@]} -eq 0 ]; then
echo "No C++ source files found."
exit 0
fi
for file in "${cpp_files[@]}"; do
echo "Running clang-tidy on ${file}"
clang-tidy -p build --warnings-as-errors='*' "${file}"
done
build-test-docs:
name: Build + Test + Docs
runs-on: ubuntu-22.04
env:
CARGO_TERM_COLOR: always
CMAKE_BUILD_PARALLEL_LEVEL: 2
steps:
- name: Checkout (with submodules)
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Show selected dependency revisions
shell: bash
run: |
set -euo pipefail
git submodule status --recursive
echo
echo "tempoch: $(git -C tempoch rev-parse HEAD) ($(git -C tempoch describe --tags --always 2>/dev/null || true))"
echo "tempoch-ffi: $(git -C tempoch/tempoch-ffi rev-parse HEAD) ($(git -C tempoch/tempoch-ffi describe --tags --always 2>/dev/null || true))"
- name: Install system dependencies
shell: bash
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
build-essential \
cmake \
ninja-build \
pkg-config \
graphviz
- name: Install Doxygen 1.16.1
shell: bash
run: |
set -euo pipefail
DOXYGEN_VERSION="1.16.1"
curl -fsSL "https://github.com/doxygen/doxygen/releases/download/Release_1_16_1/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz" -o /tmp/doxygen.tar.gz
sudo tar -xzf /tmp/doxygen.tar.gz -C /opt
sudo ln -sf "/opt/doxygen-${DOXYGEN_VERSION}/bin/doxygen" /usr/local/bin/doxygen
rm -f /tmp/doxygen.tar.gz
doxygen --version
- name: Set up Rust (stable)
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Cache cargo + build artifacts
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
tempoch/target
tempoch/tempoch-ffi/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Validate required submodules exist
shell: bash
run: |
set -euo pipefail
test -f tempoch/Cargo.toml
test -f tempoch/tempoch-ffi/Cargo.toml
- name: Configure (CMake)
shell: bash
run: |
set -euo pipefail
cmake -S . -B build -G Ninja -DTEMPOCH_BUILD_DOCS=ON
- name: Build
shell: bash
run: |
set -euo pipefail
cmake --build build --target test_tempoch
- name: Test (ctest)
shell: bash
run: |
set -euo pipefail
ctest --test-dir build --output-on-failure -L tempoch_cpp
- name: Build docs (Doxygen)
shell: bash
run: |
set -euo pipefail
cmake --build build --target docs
coverage:
name: Test & Coverage
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-22.04
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout (with submodules)
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Install system dependencies
shell: bash
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
build-essential \
cmake \
ninja-build \
pkg-config \
gcovr
- name: Set up Rust (stable)
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Configure (CMake, coverage)
shell: bash
run: |
set -euo pipefail
cmake -S . -B build-coverage -G Ninja \
-DTEMPOCH_BUILD_DOCS=OFF \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_CXX_FLAGS="--coverage" \
-DCMAKE_EXE_LINKER_FLAGS="--coverage"
- name: Build tests
shell: bash
run: |
set -euo pipefail
cmake --build build-coverage --target test_tempoch
- name: Run tests
shell: bash
run: |
set -euo pipefail
ctest --test-dir build-coverage --output-on-failure -L tempoch_cpp
- name: Coverage (Cobertura XML)
shell: bash
run: |
set -euo pipefail
gcovr \
--root . \
--exclude 'build-coverage/.*' \
--exclude 'tempoch/.*' \
--exclude 'tests/.*' \
--exclude 'examples/.*' \
--xml \
--output coverage.xml
- name: Coverage (HTML)
shell: bash
run: |
set -euo pipefail
mkdir -p coverage_html
gcovr \
--root . \
--exclude 'build-coverage/.*' \
--exclude 'tempoch/.*' \
--exclude 'tests/.*' \
--exclude 'examples/.*' \
--html-details \
--output coverage_html/index.html
- name: Build coverage summary (Markdown)
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: coverage.xml
badge: true
format: markdown
output: file
- name: Publish to Job Summary
shell: bash
run: cat code-coverage-results.md >> "$GITHUB_STEP_SUMMARY"