forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 1
426 lines (411 loc) · 14.6 KB
/
test.yml
File metadata and controls
426 lines (411 loc) · 14.6 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
name: Test Suite
on:
pull_request: {}
push:
branches:
- master
env:
AUTOINSTALL: true
AWS_ACCESS_KEY_ID: "dummy"
AWS_SECRET_ACCESS_KEY: "dummy"
CONTAINER_TOOL: "docker"
RUST_BACKTRACE: full
RUST_TEST_THREADS: 1
TEST_LOG: vector=debug
VERBOSE: true
CI: true
PROFILE: debug
RUSTFLAGS: "-D warnings"
jobs:
cancel-previous:
name: Cancel redundant jobs
runs-on: ubuntu-20.04
timeout-minutes: 3
if: github.ref != 'refs/heads/master'
steps:
- uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
all_but_latest: true # can cancel workflows scheduled later
changes:
runs-on: ubuntu-20.04
# Set job outputs to values from filter step
outputs:
source: ${{ steps.filter.outputs.source }}
dependencies: ${{ steps.filter.outputs.dependencies }}
internal_events: ${{ steps.filter.outputs.internal_events }}
helm: ${{ steps.filter.outputs.helm }}
cue: ${{ steps.filter.outputs.cue }}
markdown: ${{ steps.filter.outputs.markdown }}
steps:
- uses: actions/checkout@v2.3.5
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
source:
- ".github/workflows/test.yml"
- ".cargo/**"
- "benches/**"
- "lib/**"
- "proto/**"
- "scripts/**"
- "skaffold/**"
- "src/**"
- "tests/**"
- "build.rs"
- "Cargo.lock"
- "Cargo.toml"
- "Makefile"
- "rust-toolchain"
deny:
- 'deny.toml'
dependencies:
- ".cargo/**"
- 'Cargo.toml'
- 'Cargo.lock'
- 'rust-toolchain'
- '.github/workflows/pr.yml'
- 'Makefile'
- 'scripts/cross/**'
cue:
- 'website/cue/**'
markdown:
- '*/**.md'
internal_events:
- 'src/internal_events/**'
helm:
- 'distribution/helm/**'
docker:
- 'distribution/docker/**'
# Remove this once https://github.com/timberio/vector/issues/3771 is closed.
# Then, modify the `cross-linux` job to run `test` instead of `build`.
test-linux:
name: Unit - x86_64-unknown-linux-gnu
runs-on: [self-hosted, linux, x64, general]
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/cache@v2.1.6
name: Cache Cargo registry + index
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
# We always make sure to stop any previous sccache process before starting it fresh, that
# way we can be sure we're using the right credentials for storage, etc.
- name: Start sccache
env:
SCCACHE_REDIS: ${{ secrets.SCCACHE_REDIS }}
SCCACHE_IDLE_TIMEOUT: 0
run: |
sccache --stop-server || true
sccache --start-server
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: make slim-builds
- run: make test
env:
CARGO_BUILD_JOBS: 5
- name: Stop sccache
run: sccache --stop-server
test-misc:
name: Miscellaneous - Linux
runs-on: [self-hosted, linux, x64, general]
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- run: make ci-sweep
- uses: actions/cache@v2.1.6
name: Cache Cargo registry + index
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
# We always make sure to stop any previous sccache process before starting it fresh, that
# way we can be sure we're using the right credentials for storage, etc.
- name: Start sccache
env:
SCCACHE_REDIS: ${{ secrets.SCCACHE_REDIS }}
SCCACHE_IDLE_TIMEOUT: 0
run: |
sccache --stop-server || true
sccache --start-server
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: make slim-builds
- run: make test-shutdown
- run: make test-cli
- run: make test-behavior
- run: make check-examples
- name: Stop sccache
run: sccache --stop-server
cross-linux:
name: Cross - ${{ matrix.target }}
runs-on: ubuntu-20.04
needs: changes
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
- armv7-unknown-linux-gnueabihf
- armv7-unknown-linux-musleabihf
# We run cross checks when dependencies change to ensure they still build.
# This helps us avoid adopting dependencies that aren't compatible with other architectures.
if: ${{ needs.changes.outputs.dependencies == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- run: make ci-sweep
- uses: actions/cache@v2.1.6
name: Cache Cargo registry + index
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: make slim-builds
# Why is this build, not check? Because we need to make sure the linking phase works.
# aarch64 and musl in particular are notoriously hard to link.
# While it may be tempting to slot a `check` in here for quickness, please don't.
- run: make cross-build-${{ matrix.target }}
- uses: actions/upload-artifact@v2
with:
name: "vector-debug-${{ matrix.target }}"
path: "./target/${{ matrix.target }}/debug/vector"
cross-linux-check:
if: ${{ needs.changes.outputs.dependencies == 'true' }}
runs-on: ubuntu-latest
name: Cross - Linux
needs: cross-linux
steps:
- name: Check cross matrix status
if: ${{ needs.cross-linux.result != 'success' }}
run: exit 1
test-mac:
name: Unit - Mac
# Full CI suites for this platform were only recently introduced.
# Some failures are permitted until we can properly correct them.
continue-on-error: true
runs-on: macos-latest
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/cache@v2.1.6
name: Cache Cargo registry + index
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- run: bash scripts/environment/bootstrap-macos-10.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: make slim-builds
- run: make test
- run: make test-behavior
test-windows:
name: Unit - Windows
# Full CI suites for this platform were only recently introduced.
# Some failures are permitted until we can properly correct them.
continue-on-error: true
runs-on: [self-hosted, windows, x64, general]
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- run: choco install llvm
- run: .\scripts\environment\bootstrap-windows-2019.ps1
# We always make sure to stop any previous sccache process before starting it fresh, that
# way we can be sure we're using the right credentials for storage, etc.
- name: Start sccache
env:
SCCACHE_REDIS: ${{ secrets.SCCACHE_REDIS }}
SCCACHE_IDLE_TIMEOUT: 0
run: |
sccache --stop-server
sccache --start-server
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: make test
- name: Stop sccache
run: sccache --stop-server
test-vrl:
name: VRL - Linux
continue-on-error: true
runs-on: [self-hosted, linux, x64, general]
needs: changes
if: ${{ needs.changes.outputs.source == 'true' || needs.changes.outputs.cue == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
- run: bash scripts/environment/prepare.sh
# We always make sure to stop any previous sccache process before starting it fresh, that
# way we can be sure we're using the right credentials for storage, etc.
- name: Start sccache
env:
SCCACHE_REDIS: ${{ secrets.SCCACHE_REDIS }}
SCCACHE_IDLE_TIMEOUT: 0
run: |
sccache --stop-server || true
sccache --start-server
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: make test-vrl
- name: Stop sccache
run: sccache --stop-server
check-stdlib-features:
name: VRL Stdlib Features - Linux
continue-on-error: true
runs-on: [self-hosted, linux, x64, general]
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
# We always make sure to stop any previous sccache process before starting it fresh, that
# way we can be sure we're using the right credentials for storage, etc.
- name: Start sccache
env:
SCCACHE_REDIS: ${{ secrets.SCCACHE_REDIS }}
SCCACHE_IDLE_TIMEOUT: 0
run: |
sccache --stop-server || true
sccache --start-server
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: cargo install cargo-hack
- run: make check-stdlib-features
- name: Stop sccache
run: sccache --stop-server
check-component-features:
name: Component Features - Linux
runs-on: [self-hosted, linux, x64, general]
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
steps:
- uses: actions/checkout@v2.3.5
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
# We always make sure to stop any previous sccache process before starting it fresh, that
# way we can be sure we're using the right credentials for storage, etc.
- name: Start sccache
env:
SCCACHE_REDIS: ${{ secrets.SCCACHE_REDIS }}
SCCACHE_IDLE_TIMEOUT: 0
run: |
sccache --stop-server || true
sccache --start-server
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: cargo install cargo-hack
- run: make check-component-features
- name: Stop sccache
run: sccache --stop-server
checks:
name: Checks
runs-on: ubuntu-20.04
container: timberio/ci_image
needs: changes
steps:
- uses: actions/checkout@v2.3.5
with:
# check-version needs tags
fetch-depth: 0 # fetch everything
- uses: actions/cache@v2.1.6
name: Cache Cargo registry + index
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Enable Rust matcher
run: echo "::add-matcher::.github/matchers/rust.json"
- name: Make slim-builds
run: make slim-builds
- name: Check style
run: make check-style
- name: Check code format || needs.changes.outputs.source == 'true'
if: needs.changes.outputs.source == 'true'
run: make check-fmt
- name: Check clippy
if: needs.changes.outputs.source == 'true'
run: make check-clippy
- name: Check version
run: make check-version
- name: Check scripts
run: make check-scripts
- name: Check helm dependencies
if: needs.changes.outputs.helm == 'true'
run: make check-helm-dependencies
- name: Check helm lint
if: needs.changes.outputs.helm == 'true'
run: make check-helm-lint
- name: Check that Helm template snapshots don't diverge from Helm
if: needs.changes.outputs.helm == 'true'
run: make check-helm-snapshots
- name: Check that generated Kubernetes YAMLs don't diverge from Helm
if: needs.changes.outputs.helm == 'true'
run: make check-kubernetes-yaml
- name: Check events
if: needs.changes.outputs.source == 'true'
run: make check-events
- name: Check cargo deny advisories
if: needs.changes.outputs.dependencies == 'true' || needs.changes.outputs.deny == 'true'
uses: EmbarkStudios/cargo-deny-action@v1.2.6
with:
command: check advisories
- name: Check cargo deny licenses
if: needs.changes.outputs.dependencies == 'true' || needs.changes.outputs.deny == 'true'
uses: EmbarkStudios/cargo-deny-action@v1.2.6
with:
command: check licenses
- name: Check Cue docs
if: needs.changes.outputs.cue == 'true'
run: make check-docs
- name: Check Markdown
if: needs.changes.outputs.markdown == 'true'
run: make check-markdown
master-failure:
name: master-failure
if: failure() && github.ref == 'refs/heads/master'
needs:
- cancel-previous
- changes
- cross-linux
- test-misc
- test-linux
- test-mac
- test-windows
- test-vrl
- check-component-features
- checks
runs-on: ubuntu-20.04
steps:
- name: Discord notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@0.3.2
with:
args: "Master tests failed: <https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}>"