Skip to content

Commit 14b461f

Browse files
committed
Make job names consistent
This makes it easier to tell on which targets we: - Build - Link - Run Signed-off-by: Joe Richey <joerichey@google.com>
1 parent 762c95d commit 14b461f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
cargo test --features=custom,std
3636
3737
main-tests:
38-
name: Main tests
38+
name: Tier 1 Test
3939
runs-on: ${{ matrix.os }}
4040
strategy:
4141
matrix:
@@ -58,7 +58,7 @@ jobs:
5858
run: cargo test --benches
5959

6060
linux-tests:
61-
name: Additional Linux targets
61+
name: Linux Test
6262
runs-on: ubuntu-latest
6363
strategy:
6464
matrix:
@@ -103,7 +103,7 @@ jobs:
103103
run: cargo test --no-run --target=${{ matrix.target }} --features=std
104104

105105
windows-tests:
106-
name: Additional Windows targets
106+
name: Windows Test
107107
runs-on: windows-latest
108108
strategy:
109109
matrix:
@@ -167,7 +167,7 @@ jobs:
167167
run: cross test --no-run --target=${{ matrix.target }} --features=std
168168

169169
web-tests:
170-
name: Web tests
170+
name: Web Test
171171
runs-on: ubuntu-latest
172172
steps:
173173
- uses: actions/checkout@v2
@@ -195,7 +195,7 @@ jobs:
195195
run: cargo test --target=wasm32-unknown-unknown --features=custom
196196

197197
wasm64-tests:
198-
name: WASM memory64
198+
name: wasm64 Build/Link
199199
runs-on: ubuntu-latest
200200
steps:
201201
- uses: actions/checkout@v2
@@ -210,7 +210,7 @@ jobs:
210210
run: cargo test --no-run -Z build-std=std,panic_abort --target=wasm64-unknown-unknown --features=js
211211

212212
wasi-tests:
213-
name: WASI test
213+
name: WASI Test
214214
runs-on: ubuntu-latest
215215
steps:
216216
- uses: actions/checkout@v2
@@ -226,8 +226,8 @@ jobs:
226226
mv /tmp/wasmtime ~/.cargo/bin
227227
- run: cargo test --target wasm32-wasi
228228

229-
build:
230-
name: Build only
229+
build-tier2:
230+
name: Tier 2 Build
231231
runs-on: ubuntu-latest
232232
strategy:
233233
matrix:
@@ -245,8 +245,8 @@ jobs:
245245
- name: Build
246246
run: cargo build --target=${{ matrix.target }} --features=std
247247

248-
build-std:
249-
name: Build-only (build-std)
248+
build-tier3:
249+
name: Tier 3 Build
250250
runs-on: ubuntu-latest
251251
steps:
252252
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)