-
Notifications
You must be signed in to change notification settings - Fork 0
205 lines (172 loc) · 6.03 KB
/
rust.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
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
name: Rust
on:
push:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Dependencies
if: ${{ env.ACT }}
run: sudo apt update && sudo apt install -y apt-utils pip
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
cache: pip
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Dependencies
run: sudo apt install -y libdbus-1-dev
- uses: pre-commit/[email protected]
check:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- uses: actions/checkout@v3
- name: Dependencies
if: ${{ env.ACT }}
run: sudo apt update
- name: Dependencies
run: sudo apt install -y libdbus-1-dev
- uses: dtolnay/rust-toolchain@stable
id: toolchain
with:
components: rustfmt, clippy
- uses: actions/cache@v3
id: cache-registry
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-check
restore-keys: |
${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-registry-
- uses: actions/cache@v3
id: cache-toolchain-dependent
with:
path: |
~/.cargo/bin/
target/
key: ${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}-check
restore-keys: |
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-
- name: Install required cargo
run: cargo install clippy-sarif sarif-fmt
# This would fail if we already have the programs installed with no updates available
# If we do need to install them, we'll find out that we failed in the next step
continue-on-error: true
- name: Run rust-clippy
run: cargo clippy
--all-features
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true
- name: Upload analysis results to GitHub
if: ${{ ! env.ACT }}
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true
- name: Check Cargo fmt
run: cargo fmt
--all
--check
build:
runs-on: ubuntu-latest
needs:
- check
strategy:
matrix:
rust:
- stable
- beta
- nightly
- 1.63.0
steps:
- uses: actions/checkout@v3
- name: Dependencies
if: ${{ env.ACT }}
run: sudo apt update
- name: Dependencies
run: sudo apt install -y libdbus-1-dev
- uses: dtolnay/rust-toolchain@master
id: toolchain
with:
toolchain: ${{ matrix.rust }}
- uses: actions/cache@v3
id: cache-registry
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-build
restore-keys: |
${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-check
${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-registry-
- uses: actions/cache@v3
id: cache-toolchain-dependent
with:
path: |
~/.cargo/bin/
target/
key: ${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}-build
restore-keys: |
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}-check
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-
- name: Build
run: cargo build
--locked
--all-targets
- name: Test
run: cargo test --locked
publish:
runs-on: ubuntu-latest
needs:
- build
- pre-commit
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
- name: Dependencies
if: ${{ env.ACT }}
run: sudo apt update
- name: Dependencies
run: sudo apt install -y libdbus-1-dev
- uses: dtolnay/rust-toolchain@stable
id: toolchain
- uses: actions/cache@v3
id: cache-registry
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-publish
restore-keys: |
${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-build
${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-registry-
- uses: actions/cache@v3
id: cache-toolchain-dependent
with:
path: |
~/.cargo/bin/
target/
key: ${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}-publish
restore-keys: |
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}-build
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-${{ steps.toolchain.outputs.cachekey }}-
- uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
ignore-unpublished-changes: true