-
Notifications
You must be signed in to change notification settings - Fork 124
156 lines (148 loc) · 4.6 KB
/
main.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
name: CI
on: [push, pull_request]
env:
RUSTDOCFLAGS: -D warnings
RUSTFLAGS: -D warnings
jobs:
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup update beta --no-self-update
rustup default beta
rustup component add clippy
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-features --all-targets -- -D warnings
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: ["1.70", stable, beta, nightly]
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup update ${{ matrix.rust }} --no-self-update
rustup default ${{ matrix.rust }}
- uses: Swatinem/rust-cache@v2
- run: cargo test
- name: Integration test
run: cargo test --manifest-path test-crate/Cargo.toml
cross_compile_test:
name: Test Cross Compile - ${{ matrix.platform.target }}
needs: [ test ]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
# Testable
- target: aarch64-unknown-linux-gnu
test: true
- target: arm-unknown-linux-gnueabihf
test: true
- target: powerpc-unknown-linux-gnu
test: true
- target: s390x-unknown-linux-gnu
test: true
- target: x86_64-unknown-linux-musl
test: true
- target: aarch64-unknown-linux-musl
test: true
# Build only
- target: x86_64-pc-solaris
test: false
- target: x86_64-pc-windows-gnu
test: false
# FIXME: build fails, see <https://github.com/rust-lang/cmake-rs/issues/211>
# - target: x86_64-unknown-freebsd
# test: false
- target: x86_64-unknown-netbsd
test: false
- target: x86_64-unknown-illumos
test: false
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup target add ${{ matrix.platform.target }}
- uses: taiki-e/install-action@v2
with:
tool: cross
- uses: Swatinem/rust-cache@v2
- name: cross test
run: cross test -vv --target ${{ matrix.platform.target }}
working-directory: test-crate
if: ${{ matrix.platform.test }}
- name: cross build
run: cross build -vv --target ${{ matrix.platform.target }}
working-directory: test-crate
if: ${{ !matrix.platform.test }}
ios_cross_compile_test:
name: Test Cross Compile - ${{ matrix.platform.target }}
needs: [ test ]
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
platform:
- target: aarch64-apple-ios
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup target add ${{ matrix.platform.target }}
- uses: Swatinem/rust-cache@v2
- name: build
run: cargo build -vv --target ${{ matrix.platform.target }}
working-directory: test-crate
env:
# If this isn't specified the default is iOS 7, for which zlib-ng will not compile due to the lack of thread-local storage.
IPHONEOS_DEPLOYMENT_TARGET: 16
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup component add rustfmt
- run: cargo fmt --all -- --check
doc:
name: docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
rustup update nightly --no-self-update
rustup default nightly
- uses: Swatinem/rust-cache@v2
- run: cargo doc
success:
needs:
- clippy
- test
- cross_compile_test
- ios_cross_compile_test
- rustfmt
- doc
runs-on: ubuntu-latest
# GitHub branch protection is exceedingly silly and treats "jobs skipped because a dependency
# failed" as success. So we have to do some contortions to ensure the job fails if any of its
# dependencies fails.
if: always() # make sure this is never "skipped"
steps:
# Manually check the status of all dependencies. `if: failure()` does not work.
- name: check if any dependency failed
run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'