-
Notifications
You must be signed in to change notification settings - Fork 0
244 lines (205 loc) · 6.61 KB
/
ci.yml
File metadata and controls
244 lines (205 loc) · 6.61 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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: Cache cargo directories
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: cargo fmt --all -- --check
clippy:
name: "Lint code with clippy on OS=${{ matrix.os }} rust=${{ matrix.rust }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- {os: ubuntu-latest, rust: stable, feature: --all-features, target: x86_64-unknown-linux-gnu}
- {os: ubuntu-latest, rust: stable, feature: "", target: x86_64-unknown-linux-gnu}
- {os: macos-latest, rust: stable, feature: --all-features, target: x86_64-apple-darwin}
- {os: macos-latest, rust: stable, feature: "", target: x86_64-apple-darwin}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Cache cargo directories
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: cargo clippy --all-targets ${{ matrix.feature }} --workspace -- -D warnings
tests_macos:
name: "Test ${{ matrix.rust }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
# rust: [stable, beta, nightly, 1.47.0]
rust: [stable]
os: [macos-latest]
env:
RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: 2000M
SCCACHE_IDLE_TIMEOUT: 0
SCCACHE_DIR: /Users/runner/Library/Caches/Mozilla.sccache
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Cache cargo directories
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install sccache via homebrew
if: startsWith(matrix.os, 'macos')
run: |
brew install sccache
- name: Cache sccache output on ${{ matrix.os }}
uses: actions/cache@v2
continue-on-error: true
with:
path: ${{ env.SCCACHE_DIR }}
key: ${{ runner.os }}-sccache-debug-${{ hashFiles('**/Cargo.*') }}
# restore-keys: ${{ runner.os }}-sccache-
- name: Start sccache server
env:
SCCACHE_DIR: ${{ env.SCCACHE_DIR }}
run: |
sccache --start-server
- name: Run tests
run: cargo test --no-fail-fast
env:
RUST_BACKTRACE: full
CARGO_INCREMENTAL: 0
- name: Run tests
run: cargo test --all-features --no-fail-fast
env:
RUST_BACKTRACE: full
CARGO_INCREMENTAL: 0
# RUSTDOCFLAGS: "-Cpanic=abort"
# RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off"
- name: Install devrc
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
- name: Show sccache stats
run: |
sccache --show-stats
- name: Stop sccache server
run: |
sccache --stop-server
tests_linux:
name: "Test ${{ matrix.rust }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
# rust: [stable, beta, nightly, 1.47.0]
rust: [stable]
os: [ubuntu-latest]
env:
RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: 2000M
SCCACHE_IDLE_TIMEOUT: 0
SCCACHE_DIR: /home/runner/.cache/sccache
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Cache cargo directories
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install sccache via precompiled build
if: startsWith(matrix.os, 'ubuntu')
env:
LINK: https://github.com/mozilla/sccache/releases/download
SCCACHE_VERSION: 0.5.0
run: |
SCCACHE_FILE=sccache-v$SCCACHE_VERSION-x86_64-unknown-linux-musl
mkdir -p $HOME/.local/bin
curl -L "$LINK/v$SCCACHE_VERSION/$SCCACHE_FILE.tar.gz" | tar xz
chmod +x $SCCACHE_FILE/sccache
mv -f $SCCACHE_FILE/sccache $HOME/.local/bin/sccache
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Cache sccache output on ${{ matrix.os }}
uses: actions/cache@v2
continue-on-error: true
with:
path: ${{ env.SCCACHE_DIR }}
key: ${{ runner.os }}-sccache-debug-${{ hashFiles('**/Cargo.*') }}
# restore-keys: ${{ runner.os }}-sccache-
- name: Start sccache server
env:
SCCACHE_DIR: ${{ env.SCCACHE_DIR }}
run: |
sccache --start-server
- name: Run tests
run: cargo test --no-fail-fast
env:
RUST_BACKTRACE: full
CARGO_INCREMENTAL: 0
# RUSTDOCFLAGS: "-Cpanic=abort"
# RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off"
- name: Run tests
run: cargo test --all-features --no-fail-fast
env:
RUST_BACKTRACE: full
CARGO_INCREMENTAL: 0
# RUSTDOCFLAGS: "-Cpanic=abort"
# RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off"
- name: Install devrc
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
- name: Show sccache stats
run: |
sccache --show-stats
- name: Stop sccache server
run: |
sccache --stop-server