-
Notifications
You must be signed in to change notification settings - Fork 71
105 lines (93 loc) · 2.47 KB
/
test.yml
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
name: Test Suite
on:
pull_request:
merge_group:
types: [checks_requested]
push:
branches:
- main
concurrency:
# For pull requests, cancel running workflows, for main, run all
#
# `github.event.number` exists for pull requests, otherwise fall back to SHA
# for main
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
env:
RUST_BACKTRACE: full
TEST_LOG: vector=debug
VERBOSE: true
CI: true
PROFILE: debug
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "clippy"
run: ./scripts/clippy.sh
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "Format check"
run: ./scripts/format_check.sh
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "Tests"
run: ./scripts/tests.sh
vrl:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "VRL tests"
run: ./scripts/vrl_tests.sh
check-features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "Check that all features can compile"
run: ./scripts/check_features.sh
check-licenses:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "Check that the 3rd-party license file is up to date"
run: ./scripts/check_licenses.sh
check-msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "Check that the MSRV is up to date"
run: ./scripts/check_msrv.sh
check-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "Check that the 3rd-party license file is up to date"
run: ./scripts/check_deny.sh
wasm32-unknown-unknown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: "Check wasm32-unknown-unknown target"
run: ./scripts/check_wasm32.sh