35
35
cargo test --features=custom,std
36
36
37
37
main-tests :
38
- name : Main tests
38
+ name : Tier 1 Test
39
39
runs-on : ${{ matrix.os }}
40
40
strategy :
41
41
matrix :
58
58
run : cargo test --benches
59
59
60
60
linux-tests :
61
- name : Additional Linux targets
61
+ name : Linux Test
62
62
runs-on : ubuntu-latest
63
63
strategy :
64
64
matrix :
@@ -103,7 +103,7 @@ jobs:
103
103
run : cargo test --no-run --target=${{ matrix.target }} --features=std
104
104
105
105
windows-tests :
106
- name : Additional Windows targets
106
+ name : Windows Test
107
107
runs-on : windows-latest
108
108
strategy :
109
109
matrix :
@@ -167,7 +167,7 @@ jobs:
167
167
run : cross test --no-run --target=${{ matrix.target }} --features=std
168
168
169
169
web-tests :
170
- name : Web tests
170
+ name : Web Test
171
171
runs-on : ubuntu-latest
172
172
steps :
173
173
- uses : actions/checkout@v2
@@ -195,7 +195,7 @@ jobs:
195
195
run : cargo test --target=wasm32-unknown-unknown --features=custom
196
196
197
197
wasm64-tests :
198
- name : WASM memory64
198
+ name : wasm64 Build/Link
199
199
runs-on : ubuntu-latest
200
200
steps :
201
201
- uses : actions/checkout@v2
@@ -210,7 +210,7 @@ jobs:
210
210
run : cargo test --no-run -Z build-std=std,panic_abort --target=wasm64-unknown-unknown --features=js
211
211
212
212
wasi-tests :
213
- name : WASI test
213
+ name : WASI Test
214
214
runs-on : ubuntu-latest
215
215
steps :
216
216
- uses : actions/checkout@v2
@@ -226,8 +226,8 @@ jobs:
226
226
mv /tmp/wasmtime ~/.cargo/bin
227
227
- run : cargo test --target wasm32-wasi
228
228
229
- build :
230
- name : Build only
229
+ build-tier2 :
230
+ name : Tier 2 Build
231
231
runs-on : ubuntu-latest
232
232
strategy :
233
233
matrix :
@@ -245,8 +245,8 @@ jobs:
245
245
- name : Build
246
246
run : cargo build --target=${{ matrix.target }} --features=std
247
247
248
- build-std :
249
- name : Build-only (build-std)
248
+ build-tier3 :
249
+ name : Tier 3 Build
250
250
runs-on : ubuntu-latest
251
251
steps :
252
252
- uses : actions/checkout@v2
0 commit comments