forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
293 lines (280 loc) · 9.33 KB
/
test.yml
File metadata and controls
293 lines (280 loc) · 9.33 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
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
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.6.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
changes:
runs-on: ubuntu-latest
# Set job outputs to values from filter step
outputs:
source: ${{ steps.filter.outputs.source }}
docs: ${{ steps.filter.outputs.docs }}
markdown: ${{ steps.filter.outputs.markdown }}
dependencies: ${{ steps.filter.outputs.dependencies }}
internal_events: ${{ steps.filter.outputs.internal_events }}
helm: ${{ steps.filter.outputs.helm }}
steps:
- uses: actions/checkout@v2
- 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"
docs:
- 'docs/**'
markdown:
- '**/**.md'
dependencies:
- 'Cargo.toml'
- 'Cargo.lock'
- 'rust-toolchain'
- '.github/workflows/pr.yml'
- 'Makefile'
- 'scripts/cross/**'
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
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: sudo bash scripts/environment/bootstrap-ubuntu-20.04.sh
- run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: make slim-builds
- run: make test-components
test-misc:
name: Miscellaneous - Linux
runs-on: ubuntu-20.04
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
steps:
- uses: actions/checkout@v2
- run: make ci-sweep
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: sudo bash scripts/environment/bootstrap-ubuntu-20.04.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: make slim-builds
- run: make test-shutdown
- run: make test-cli
- run: make test-behavior
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
- run: make ci-sweep
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- 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"
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
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- 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
- env:
RUSTFLAGS: "-D warnings"
run: cargo test --no-fail-fast --no-default-features --features default-msvc
check-component-features:
name: Component Features - Linux
needs: changes
if: ${{ needs.changes.outputs.source == 'true' }}
runs-on: ubuntu-20.04
container: timberio/ci_image
steps:
- uses: actions/checkout@v2
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: make slim-builds
- run: echo "home/runner/.local/bin" >> "$GITHUB_PATH"
- run: make check-component-features
env:
RUSTFLAGS: "-D warnings"
checks:
name: Checks
runs-on: ubuntu-20.04
container: timberio/ci_image
needs: changes
steps:
- uses: actions/checkout@v2
with:
# check-version needs tags
fetch-depth: 0 # fetch everything
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Enable Rust matcher
run: echo "::add-matcher::.github/matchers/rust.json"
- name: Make slim-builds
run: make slim-builds
- name: Check markdown
if: needs.changes.outputs.markdown == 'true'
run: make check-markdown
- name: Check Cue docs
if: needs.changes.outputs.docs == 'true'
run: make check-docs
- name: Check code format
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 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'
uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check advisories
- name: Check cargo deny licenses
if: needs.changes.outputs.dependencies == 'true'
uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check licenses
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
- check-component-features
- checks
runs-on: ubuntu-latest
steps:
- name: Discord notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@0.3.0
with:
args: "Master tests failed: <https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}>"