-
Notifications
You must be signed in to change notification settings - Fork 91
194 lines (178 loc) · 6.47 KB
/
ci.yaml
File metadata and controls
194 lines (178 loc) · 6.47 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
name: Rust
on: [ push, pull_request ]
env:
CARGO_TERM_COLOR: 'always'
CARGO_TERM_VERBOSE: 'true'
RUSTFLAGS: '--deny warnings'
RUSTDOCFLAGS: '-Dwarnings'
jobs:
rust-version:
name: Minimal supported Rust version
outputs:
version: ${{ steps.read_version.outputs.msrv }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- id: read_version
run: |
awk -F '=' \
'/^rust-version[[:space:]]*=/ { gsub(/([" ]|#.*)/,"",$2); print ("msrv=" $2) }' \
Cargo.toml \
| tee -a "$GITHUB_OUTPUT"
test-linux:
name: Test (Linux)
needs: rust-version
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust-version:
- ${{ needs.rust-version.outputs.version }}
- stable
steps:
- name: checkout source
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
submodules: true
- name: set up cargo cache
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ matrix.rust-version}}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-${{ matrix.rust-version }}-
- name: set up nginx deps cache
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
continue-on-error: false
with:
path: |
.cache/.gnupg
.cache/nginx
.cache/*.tar.gz
.cache/*.tar.asc
.cache/*.tar.sig
key: ${{ runner.os }}-deps-${{ hashFiles('**/nginx-sys/build.rs') }}
restore-keys: ${{ runner.os }}-deps-
- uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9
with:
components: rustfmt, clippy
toolchain: ${{ matrix.rust-version }}
- name: build (all targets, all features)
id: build
run: cargo build --workspace --all-targets --all-features
- name: check ngx, no default features (no_std)
run: cargo check -p ngx --no-default-features --features vendored
- name: check ngx, alloc
run: cargo check -p ngx --no-default-features --features vendored,alloc
- name: check ngx, std
run: cargo check -p ngx --no-default-features --features vendored,std
- name: check ngx, alloc + serde
run: cargo check -p ngx --no-default-features --features vendored,alloc,serde
- name: clippy
# always run if build succeeds
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
run: cargo clippy --workspace --all-targets --all-features -- -Dwarnings
- name: test
# always run if build succeeds
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
run: cargo test --workspace --all-features
- name: rustdoc
# always run if build succeeds
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
run: cargo doc --all-features --no-deps
examples-linux:
name: Examples (Linux)
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
submodules: true
- name: set up cargo cache
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: set up nginx deps cache
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
continue-on-error: false
with:
path: |
.cache/.gnupg
.cache/nginx
.cache/*.tar.gz
.cache/*.tar.asc
.cache/*.tar.sig
key: ${{ runner.os }}-deps-${{ hashFiles('**/nginx-sys/build.rs') }}
restore-keys: ${{ runner.os }}-deps-
- name: compile examples
run: cargo build --release --package examples --examples --all-features
test-macos:
name: Test (MacOS)
runs-on: macos-latest
steps:
- name: install command line dependencies
run: brew install make gnupg
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
submodules: true
- uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9
with:
toolchain: stable
- name: set up cargo cache
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: set up nginx deps cache
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
continue-on-error: false
with:
path: |
.cache/*.tar.gz
.cache/*.tar.asc
.cache/*.tar.sig
key: ${{ runner.os }}-deps-${{ hashFiles('**/nginx-sys/build.rs') }}
restore-keys: ${{ runner.os }}-deps-
- name: current directory
run: pwd
- name: make cache directory
run: mkdir -p .cache/.gnupg
- name: disable ipv6 for gpg
run: echo "disable-ipv6" > .cache/.gnupg/dirmngr.conf
- name: build
run: cargo build --workspace --all-targets --features "async,vendored"
- name: run tests
run: cargo test --workspace --features "async,vendored"
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9
with:
components: rustfmt
toolchain: stable
- name: rustfmt version
run: rustfmt --version
- name: cargo fmt
run: cargo fmt --all --check