Skip to content

Commit 5276a04

Browse files
committed
Auto merge of #11039 - ehuss:ci-names, r=epage
Add names to CI jobs This adds names to the CI jobs. I've often found the existing auto-generated names to be confusing, and I think it would help to make them a little more succinct and clearer. Before: <img width="314" alt="image" src="https://user-images.githubusercontent.com/43198/187777515-6237f765-d747-4d74-8e06-baa86fbe8b2f.png"> After: <img width="295" alt="image" src="https://user-images.githubusercontent.com/43198/187777559-6e21f08a-cf4c-4aaf-86ba-201bdd90c84f.png">
2 parents d705fb3 + 783ec2e commit 5276a04

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,24 +37,31 @@ jobs:
3737
strategy:
3838
matrix:
3939
include:
40-
- os: ubuntu-latest
40+
- name: Linux x86_64 stable
41+
os: ubuntu-latest
4142
rust: stable
4243
other: i686-unknown-linux-gnu
43-
- os: ubuntu-latest
44+
- name: Linux x86_64 beta
45+
os: ubuntu-latest
4446
rust: beta
4547
other: i686-unknown-linux-gnu
46-
- os: ubuntu-latest
48+
- name: Linux x86_64 nightly
49+
os: ubuntu-latest
4750
rust: nightly
4851
other: i686-unknown-linux-gnu
49-
- os: macos-latest
52+
- name: macOS x86_64 stable
53+
os: macos-latest
5054
rust: stable
5155
other: x86_64-apple-ios
52-
- os: windows-latest
56+
- name: Windows x86_64 MSVC stable
57+
os: windows-latest
5358
rust: stable-msvc
5459
other: i686-pc-windows-msvc
55-
- os: windows-latest
60+
- name: Windows x86_64 gnu nightly
61+
os: windows-latest
5662
rust: nightly-gnu
5763
other: i686-pc-windows-gnu
64+
name: Tests ${{ matrix.name }}
5865
steps:
5966
- uses: actions/checkout@v3
6067
- name: Dump Environment

0 commit comments

Comments
 (0)