forked from static-web-server/static-web-server
-
Notifications
You must be signed in to change notification settings - Fork 0
343 lines (321 loc) · 10.2 KB
/
devel.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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
name: devel
on:
merge_group:
branches:
- master
pull_request:
paths:
- .github/workflows/devel.yml
- .cargo/config.toml
- Cargo.lock
- Cargo.toml
- src/**
- tests/**
push:
branches:
- master
paths:
- .github/workflows/devel.yml
- .cargo/config.toml
- Cargo.lock
- Cargo.toml
- src/**
- tests/**
schedule:
- cron: '30 01 * * *' # Every day at 01:30 UTC
jobs:
build-wasix:
runs-on: ubuntu-22.04
name: "Build WASIX"
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install Tools
run: |
sudo apt-get update
sudo apt-get install -y git llvm clang make lld curl
- name: "Install cargo-wasix"
run: |
cargo install cargo-wasix
- name: "Download Toolchain"
run: |
cargo wasix download-toolchain v2024-06-26.1
- name: "Build"
run: |
cargo wasix build --no-default-features --features compression-gzip,http2 --bin static-web-server --release
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: static-web-server
path: target/wasm32-wasmer-wasi/release/static-web-server.wasm
publish-wasix:
runs-on: ubuntu-22.04
if: ${{ github.ref == 'refs/heads/master' }}
needs: [build-wasix]
name: "Publish"
steps:
- uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: static-web-server
- name: Setup Wasmer
uses: wasmerio/setup-wasmer@v3.1
- name: List contents
run: |
ls
- name: "Push"
run: |
wasmer package push --registry="wasmer.io" --non-interactive --token=${{ secrets.WASMER_CIUSER_PROD_TOKEN }} .
test:
name: test
runs-on: ${{ matrix.os }}
env:
# Cargo binary
CARGO_BIN: cargo
# When CARGO_BIN is set to CROSS, this is set to `--target matrix.target`
TARGET_FLAGS: ""
# When CARGO_BIN is set to CROSS, TARGET_DIR includes matrix.target
TARGET_DIR: ./target
# Emit backtraces on panics
RUST_BACKTRACE: 1
# Skip tests
SKIP_TESTS: ""
# SWS features for Cargo build
CARGO_FEATURES: "--features=all"
strategy:
matrix:
build:
- pinned
- linux-musl
- linux-musl-arm64
- linux-musl-i686
- linux-gnu
- linux-gnu-arm64
- linux-gnu-i686
- linux-arm-gnueabihf
- linux-musl-armv6
- linux-musl-armv7
- linux-ppc64le
- linux-s390x
# NOTE: looks like not supported by `listenfd` crate
# - linux-android-armv7
- linux-android-arm64
- netbsd
- illumos
- macos
- macos-arm64
- windows-msvc
- windows-msvc-i686
- windows-msvc-arm64
- windows-pc-gnu
include:
# Specific Rust channels.
# We test against the latest and minimum Rust stable version.
- build: pinned
os: ubuntu-22.04
rust: 1.76.0
# Some of our release builds are generated by a nightly compiler to take
# advantage of the latest optimizations/compile time improvements.
- build: linux-musl
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-musl
- build: linux-musl-i686
os: ubuntu-22.04
rust: stable
target: i686-unknown-linux-musl
- build: linux-musl-arm64
os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-musl
- build: linux-gnu
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-gnu
- build: linux-gnu-i686
os: ubuntu-22.04
rust: stable
target: i686-unknown-linux-gnu
- build: linux-gnu-arm64
os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-gnu
- build: linux-arm-gnueabihf
os: ubuntu-22.04
rust: stable
target: arm-unknown-linux-gnueabihf
- build: linux-musl-armv6
os: ubuntu-22.04
rust: stable
target: arm-unknown-linux-musleabihf
- build: linux-musl-armv7
os: ubuntu-22.04
rust: stable
target: armv7-unknown-linux-musleabihf
- build: linux-ppc64le
os: ubuntu-22.04
rust: stable
target: powerpc64le-unknown-linux-gnu
- build: linux-s390x
os: ubuntu-22.04
rust: stable
target: s390x-unknown-linux-gnu
# NOTE: looks like not supported by `listenfd` crate
# - build: linux-android-armv7
# os: ubuntu-22.04
# rust: stable
# target: armv7-linux-androideabi
- build: linux-android-arm64
os: ubuntu-22.04
rust: stable
target: aarch64-linux-android
- build: netbsd
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-netbsd
- build: illumos
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-illumos
- build: macos
os: macos-12
rust: stable
target: x86_64-apple-darwin
- build: macos-arm64
os: macos-12
rust: stable
target: aarch64-apple-darwin
- build: windows-msvc
os: windows-2022
rust: 1.77.2
target: x86_64-pc-windows-msvc
- build: windows-msvc-i686
os: windows-2022
rust: 1.77.2
target: i686-pc-windows-msvc
- build: windows-msvc-arm64
os: windows-2022
rust: stable
target: aarch64-pc-windows-msvc
- build: windows-pc-gnu
os: windows-2022
rust: 1.77.2
target: x86_64-pc-windows-gnu
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Cache Rust Cargo/Toolchain
uses: actions/cache@v3
with:
path: |
~/.cargo
**/target
key: rust-${{ matrix.build }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
rust-${{ matrix.build }}-${{ matrix.target }}-
- name: Install Linux/BSD tools
if: ${{ !contains(matrix.os, 'windows') }}
run: scripts/ci/install_tools.sh --target=${{ matrix.target }}
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- name: Set up Cross
if: ${{ !contains(matrix.os, 'windows') && matrix.target != '' }}
shell: bash
run: |
# Use 'cargo.sh' script for Android targets only
if [[ "${{ matrix.build }}" == "linux-android-armv7" ]] || [[ "${{ matrix.build }}" == "linux-android-arm64" ]]; then
echo "CARGO_BIN=scripts/ci/cargo.sh" >> $GITHUB_ENV
else
target=''
case "${{ matrix.os }}" in
*macos*)
target=x86_64-apple-darwin
;;
*)
target=x86_64-unknown-linux-musl
;;
esac
echo "Installing cross..."
curl -sSL \
"https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-$target.tar.gz" \
| sudo tar zxf - -C /usr/local/bin/ cross cross-util
cross -V
echo "CARGO_BIN=/usr/local/bin/cross" >> $GITHUB_ENV
fi
- name: Setup Cargo
shell: bash
run: |
if [[ "${{ matrix.target }}" != "" ]]; then
echo "TARGET_FLAGS=--target=${{ matrix.target }}" >> $GITHUB_ENV
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
fi
echo "cargo command is: ${{ env.CARGO_BIN }}"
echo "target flag is: ${{ env.TARGET_FLAGS }}"
echo "target dir is: ${{ env.TARGET_DIR }}"
- name: Setup Windows ARM64
if: ${{ contains(matrix.build, 'windows-msvc-arm64') }}
run: |
# ring crate: add Visual Studio Build Tools "VS 2022 C++ ARM64 build tools" and "clang" components
$env:Path += ";C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin"
- name: Skip tests
shell: bash
if: ${{ contains(fromJSON('["macos-arm64", "linux-android-arm64", "linux-android-armv7", "netbsd", "illumos", "windows-msvc-arm64"]'), matrix.build) }}
run: |
# Can't run tests: cross-compiling
echo "SKIP_TESTS=--no-run" >> $GITHUB_ENV
- name: Run tests
shell: bash
run: |
${{ env.CARGO_BIN }} test --verbose ${{ env.CARGO_FEATURES }} ${{ env.TARGET_FLAGS }} ${{ env.SKIP_TESTS }}
- name: Run build
shell: bash
run: |
${{ env.CARGO_BIN }} build --bin static-web-server -vv ${{ env.CARGO_FEATURES }} ${{ env.TARGET_FLAGS }}
- name: Run executable
shell: bash
run: |
case "${{ matrix.build }}" in
*-arm*|*bsd*|*illumos*|*ppc64*|*s390x*)
echo "arm,bsd,illumos,ppc64,s390x are unable to execute on CI for now!"
;;
*)
if [[ "${{ matrix.os }}" == "windows-2022" ]]; then
target/${{ matrix.target }}/debug/static-web-server.exe -h
else
target/${{ matrix.target }}/debug/static-web-server -h
fi
;;
esac
checks:
name: checks
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Check typos
uses: crate-ci/typos@master
with:
config: ./.github/workflows/config/typos.toml
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Check formatting
run: |
cargo fmt --all -- --check
- name: Check via Clippy
run: |
cargo clippy --all-features -- -D warnings
- name: Check crate docs
run: |
cargo doc --lib --no-deps