-
Notifications
You must be signed in to change notification settings - Fork 0
173 lines (160 loc) · 4.79 KB
/
Copy pathci.yml
File metadata and controls
173 lines (160 loc) · 4.79 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 1
RUSTFLAGS: "-D warnings"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
changes:
name: Detect Changes
runs-on: ubuntu-latest
outputs:
code: ${{ steps.filter.outputs.code }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
code:
- 'src/**'
- 'proto/**'
- 'tests/**'
- 'benches/**'
- 'Cargo.toml'
- 'Cargo.lock'
- 'build.rs'
- '.github/workflows/ci.yml'
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt -- --check
build:
name: Build
if: needs.changes.outputs.code == 'true'
needs: changes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: Linux-X64-cargo-${{ hashFiles('**/Cargo.lock') }}
cache-targets: true
- run: cargo build --all-targets
build-nightly:
name: Build (nightly)
if: needs.changes.outputs.code == 'true'
needs: changes
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
with:
key: Linux-X64-cargo-nightly-${{ hashFiles('**/Cargo.lock') }}
cache-targets: true
- run: cargo build --all-targets
clippy:
name: Clippy
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
key: Linux-X64-cargo-${{ hashFiles('**/Cargo.lock') }}
cache-targets: true
- run: cargo clippy --all-targets -- -D warnings
test:
name: Test
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: Linux-X64-cargo-${{ hashFiles('**/Cargo.lock') }}
cache-targets: true
- run: cargo test --all-targets
- run: cargo test --doc
proto:
name: Proto Compilation
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: Linux-X64-cargo-${{ hashFiles('**/Cargo.lock') }}
cache-targets: true
- run: cargo build
- run: git diff --exit-code src/generated/
bench:
name: Benchmark Compile Check
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: Linux-X64-cargo-${{ hashFiles('**/Cargo.lock') }}
cache-targets: true
- run: cargo bench --all -- --test
ci-required:
name: CI Required
if: always()
needs: [changes, fmt, clippy, test, proto, bench]
runs-on: ubuntu-latest
steps:
- name: Check results
run: |
# fmt is always required
if [ "${{ needs.fmt.result }}" != "success" ]; then
echo "Format check failed"
exit 1
fi
# code checks are only required when code changes
if [ "${{ needs.changes.outputs.code }}" == "true" ]; then
if [ "${{ needs.clippy.result }}" != "success" ] || \
[ "${{ needs.test.result }}" != "success" ] || \
[ "${{ needs.proto.result }}" != "success" ] || \
[ "${{ needs.bench.result }}" != "success" ]; then
echo "Code checks failed"
exit 1
fi
fi
echo "All checks passed"