-
Notifications
You must be signed in to change notification settings - Fork 0
319 lines (319 loc) · 9.72 KB
/
ci.yml
File metadata and controls
319 lines (319 loc) · 9.72 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
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
# DO NOT EDIT - This file is generated by cigen
# Source: .cigen/workflows/
# Regenerate with: cargo run -- --config .cigen generate
#
name: CI
on:
pull_request: {}
push:
branches:
- main
jobs:
build_cigen:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- name: Prepare Node runtime for actions
if: ${{ env.ACT == 'true' }}
run: |
set -e
if ! command -v node >/dev/null 2>&1 || ! command -v protoc >/dev/null 2>&1; then
apt-get update
apt-get install -y nodejs npm protobuf-compiler
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Install build dependencies
run: |
set -e
apt-get update
apt-get install -y nodejs npm protobuf-compiler
- uses: actions/cache@v4
with:
path: target/release
key: target-release-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
- name: Build cigen binary
run: cargo build --release --bin cigen
- name: Prepare artifact bundle
run: |
set -e
mkdir -p .cigen/bin
cp target/release/cigen .cigen/bin/cigen
- uses: actions/upload-artifact@v4
with:
path: .cigen/bin/cigen
name: cigen-bin
clippy:
runs-on: ubuntu-latest
container:
image: rust:latest
needs:
- build_cigen
steps:
- name: Prepare Node runtime for actions
if: ${{ env.ACT == 'true' }}
run: |
set -e
if ! command -v node >/dev/null 2>&1 || ! command -v protoc >/dev/null 2>&1; then
apt-get update
apt-get install -y nodejs npm protobuf-compiler
fi
- name: Install protobuf compiler
if: runner.os == 'Linux'
run: |
set -e
if command -v sudo >/dev/null 2>&1; then
sudo apt-get update
sudo apt-get install -y protobuf-compiler
else
apt-get update
apt-get install -y protobuf-compiler
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Download cigen binary
uses: actions/download-artifact@v4
with:
name: cigen-bin
path: .cigen/bin
continue-on-error: true
- name: Ensure cigen binary
run: |
set -e
if [ ! -x .cigen/bin/cigen ]; then
echo 'cigen binary not found; building from source'
cargo build --release --bin cigen
mkdir -p .cigen/bin
cp target/release/cigen .cigen/bin/cigen
fi
- name: Prepare cigen binary
run: |
set -e
mkdir -p .cigen/bin
chmod +x .cigen/bin/cigen
- name: Compute source hash
id: compute_hash
run: |
set -euo pipefail
mkdir -p .cigen/skip-cache
mkdir -p .cigen/cache
./.cigen/bin/cigen hash \
--job clippy \
--config .cigen \
--base-dir . \
--output job_hash \
--cache .cigen/cache/file-hashes.json
- name: Restore skip cache
id: job_skip_cache
uses: actions/cache@v4
with:
path: .cigen/skip-cache/clippy
key: job-skip-${ runner.os }-clippy-${ steps.compute_hash.outputs.job_hash }
restore-keys: job-skip-${ runner.os }-clippy-
if: ${{ env.ACT != 'true' }}
- name: Skip job (cached)
if: steps.job_skip_cache.outputs.cache-hit == 'true'
run: echo 'Job cache hit; skipping remaining steps.' && exit 0
- name: Install clippy
run: rustup component add clippy
if: steps.job_skip_cache.outputs.cache-hit != 'true'
- name: Clippy check
run: cargo clippy --all-targets --all-features -- -D warnings
if: steps.job_skip_cache.outputs.cache-hit != 'true'
- name: Record job completion
if: success() && steps.job_skip_cache.outputs.cache-hit != 'true'
run: |
set -e
HASH="${JOB_HASH}"
if [ -z "$HASH" ]; then
echo 'JOB_HASH missing' >&2
exit 1
fi
MARKER=.cigen/skip-cache/clippy/$HASH
mkdir -p "$(dirname "$MARKER")"
date > "$MARKER"
env:
JOB_HASH: ${{ steps.compute_hash.outputs.job_hash }}
fmt:
runs-on: ubuntu-latest
container:
image: rust:latest
needs:
- build_cigen
steps:
- name: Prepare Node runtime for actions
if: ${{ env.ACT == 'true' }}
run: |
set -e
if ! command -v node >/dev/null 2>&1 || ! command -v protoc >/dev/null 2>&1; then
apt-get update
apt-get install -y nodejs npm protobuf-compiler
fi
- name: Install protobuf compiler
if: runner.os == 'Linux'
run: |
set -e
if command -v sudo >/dev/null 2>&1; then
sudo apt-get update
sudo apt-get install -y protobuf-compiler
else
apt-get update
apt-get install -y protobuf-compiler
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Download cigen binary
uses: actions/download-artifact@v4
with:
name: cigen-bin
path: .cigen/bin
continue-on-error: true
- name: Ensure cigen binary
run: |
set -e
if [ ! -x .cigen/bin/cigen ]; then
echo 'cigen binary not found; building from source'
cargo build --release --bin cigen
mkdir -p .cigen/bin
cp target/release/cigen .cigen/bin/cigen
fi
- name: Prepare cigen binary
run: |
set -e
mkdir -p .cigen/bin
chmod +x .cigen/bin/cigen
- name: Compute source hash
id: compute_hash
run: |
set -euo pipefail
mkdir -p .cigen/skip-cache
mkdir -p .cigen/cache
./.cigen/bin/cigen hash \
--job fmt \
--config .cigen \
--base-dir . \
--output job_hash \
--cache .cigen/cache/file-hashes.json
- name: Restore skip cache
id: job_skip_cache
uses: actions/cache@v4
with:
path: .cigen/skip-cache/fmt
key: job-skip-${ runner.os }-fmt-${ steps.compute_hash.outputs.job_hash }
restore-keys: job-skip-${ runner.os }-fmt-
if: ${{ env.ACT != 'true' }}
- name: Skip job (cached)
if: steps.job_skip_cache.outputs.cache-hit == 'true'
run: echo 'Job cache hit; skipping remaining steps.' && exit 0
- name: Install rustfmt
run: rustup component add rustfmt
if: steps.job_skip_cache.outputs.cache-hit != 'true'
- name: Format check
run: cargo fmt -- --check
if: steps.job_skip_cache.outputs.cache-hit != 'true'
- name: Record job completion
if: success() && steps.job_skip_cache.outputs.cache-hit != 'true'
run: |
set -e
HASH="${JOB_HASH}"
if [ -z "$HASH" ]; then
echo 'JOB_HASH missing' >&2
exit 1
fi
MARKER=.cigen/skip-cache/fmt/$HASH
mkdir -p "$(dirname "$MARKER")"
date > "$MARKER"
env:
JOB_HASH: ${{ steps.compute_hash.outputs.job_hash }}
test:
runs-on: ubuntu-latest
container:
image: rust:latest
needs:
- build_cigen
steps:
- name: Prepare Node runtime for actions
if: ${{ env.ACT == 'true' }}
run: |
set -e
if ! command -v node >/dev/null 2>&1 || ! command -v protoc >/dev/null 2>&1; then
apt-get update
apt-get install -y nodejs npm protobuf-compiler
fi
- name: Install protobuf compiler
if: runner.os == 'Linux'
run: |
set -e
if command -v sudo >/dev/null 2>&1; then
sudo apt-get update
sudo apt-get install -y protobuf-compiler
else
apt-get update
apt-get install -y protobuf-compiler
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Download cigen binary
uses: actions/download-artifact@v4
with:
name: cigen-bin
path: .cigen/bin
continue-on-error: true
- name: Ensure cigen binary
run: |
set -e
if [ ! -x .cigen/bin/cigen ]; then
echo 'cigen binary not found; building from source'
cargo build --release --bin cigen
mkdir -p .cigen/bin
cp target/release/cigen .cigen/bin/cigen
fi
- name: Prepare cigen binary
run: |
set -e
mkdir -p .cigen/bin
chmod +x .cigen/bin/cigen
- name: Compute source hash
id: compute_hash
run: |
set -euo pipefail
mkdir -p .cigen/skip-cache
mkdir -p .cigen/cache
./.cigen/bin/cigen hash \
--job test \
--config .cigen \
--base-dir . \
--output job_hash \
--cache .cigen/cache/file-hashes.json
- name: Restore skip cache
id: job_skip_cache
uses: actions/cache@v4
with:
path: .cigen/skip-cache/test
key: job-skip-${ runner.os }-test-${ steps.compute_hash.outputs.job_hash }
restore-keys: job-skip-${ runner.os }-test-
if: ${{ env.ACT != 'true' }}
- name: Skip job (cached)
if: steps.job_skip_cache.outputs.cache-hit == 'true'
run: echo 'Job cache hit; skipping remaining steps.' && exit 0
- name: Build workspace
run: cargo build --workspace --all-targets
if: steps.job_skip_cache.outputs.cache-hit != 'true'
- name: Run tests
run: cargo test --all-features
if: steps.job_skip_cache.outputs.cache-hit != 'true'
- name: Record job completion
if: success() && steps.job_skip_cache.outputs.cache-hit != 'true'
run: |
set -e
HASH="${JOB_HASH}"
if [ -z "$HASH" ]; then
echo 'JOB_HASH missing' >&2
exit 1
fi
MARKER=.cigen/skip-cache/test/$HASH
mkdir -p "$(dirname "$MARKER")"
date > "$MARKER"
env:
JOB_HASH: ${{ steps.compute_hash.outputs.job_hash }}