-
Notifications
You must be signed in to change notification settings - Fork 7
171 lines (141 loc) · 4.34 KB
/
build.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
name: build
on:
pull_request:
branches-ignore:
- renovate/*
push:
branches: ["*"]
tags-ignore:
- "**"
jobs:
check:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: check-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: check-${{ runner.os }}-cargo
# Calling rustup show will install the toolchain in rust-toolchain
- name: Install toolchain
id: rustup
run: rustup show
- name: Fetch dependencies
run: cargo fetch
- name: Run cargo fmt
run: cargo fmt -- --check
- name: Run cargo check
run: cargo check --all-features
- name: Run cargo clippy
run: cargo clippy --all-features
# Verify broken doc links
- name: Run cargo doc
run: cargo doc --all-features --no-deps
test:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-latest
- runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: test-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: test-${{ runner.os }}-cargo
# Calling rustup show will install the toolchain in rust-toolchain
- name: Install toolchain
id: rustup
run: rustup show
# Install cargo-make which will drive the build
- name: Install cargo-make
uses: davidB/rust-cargo-make@v1
with:
version: 0.36.2
- name: Fetch dependencies
run: cargo fetch
# Run tests
- name: Run tests
shell: bash
run: |
if cargo make --list-all-steps --output-format autocomplete --quiet | grep -E '(^|\W)ci-test($|\W)' >/dev/null 2>&1; then
cargo make ci-test
else
echo "No test task found in Makefile.toml."
fi
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v3
with:
files: coverage/info.lcov
fail_ci_if_error: false # upload can randomly fail, see https://github.com/codecov/codecov-action/issues/557
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
build:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- name: Linux
runs-on: ubuntu-latest
- name: Windows
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: build-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: build-${{ runner.os }}-cargo
- name: Setup Rust cache
uses: actions/cache@v3
with:
path: |
target/
key: build-${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }}
restore-keys: build-${{ runner.os }}-rust
# Calling rustup show will install the toolchain in rust-toolchain
- name: Install toolchain
id: rustup
run: rustup show
# Install cargo-make which will drive the build
- name: Install cargo-make
uses: davidB/rust-cargo-make@v1
with:
version: 0.36.2
- name: Fetch dependencies
run: cargo fetch
# Run binary build
- name: Build binaries
run: cargo make ci-build
# Upload artifacts
- name: Upload binaries from dist/
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.name }}
path: dist/