Skip to content

Commit

Permalink
Auto merge of #11039 - ehuss:ci-names, r=epage
Browse files Browse the repository at this point in the history
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">
  • Loading branch information
bors committed Aug 31, 2022
2 parents d705fb3 + 783ec2e commit 5276a04
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,31 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
- name: Linux x86_64 stable
os: ubuntu-latest
rust: stable
other: i686-unknown-linux-gnu
- os: ubuntu-latest
- name: Linux x86_64 beta
os: ubuntu-latest
rust: beta
other: i686-unknown-linux-gnu
- os: ubuntu-latest
- name: Linux x86_64 nightly
os: ubuntu-latest
rust: nightly
other: i686-unknown-linux-gnu
- os: macos-latest
- name: macOS x86_64 stable
os: macos-latest
rust: stable
other: x86_64-apple-ios
- os: windows-latest
- name: Windows x86_64 MSVC stable
os: windows-latest
rust: stable-msvc
other: i686-pc-windows-msvc
- os: windows-latest
- name: Windows x86_64 gnu nightly
os: windows-latest
rust: nightly-gnu
other: i686-pc-windows-gnu
name: Tests ${{ matrix.name }}
steps:
- uses: actions/checkout@v3
- name: Dump Environment
Expand Down

0 comments on commit 5276a04

Please sign in to comment.