Skip to content

Commit 89facea

Browse files
committed
Rewrite cross to use dtolnay runner
As we do in other places stop using the `actions` runner and use the `dtolnay` one to checkout toolchain. While we are at it, use double quotes for `name` fields (this is a small stylistic thing I have been introducing in an effort to make the yaml files a bit easier to read).
1 parent 0668943 commit 89facea

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/cross.yml

+7-11
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,16 @@ jobs:
3737
- x86_64-unknown-linux-musl
3838
# - x86_64-unknown-netbsd # error in tests "error: test failed, to rerun pass '--lib'", disabled for now
3939
steps:
40-
- name: Checkout Crate
41-
uses: actions/checkout@v2
40+
- name: "Checkout repo"
41+
uses: actions/checkout@v4
4242
- uses: Swatinem/[email protected]
4343
with:
4444
key: ${{ matrix.feature }}${{ matrix.os }}
45-
- name: Checkout Toolchain
46-
uses: actions-rs/toolchain@v1
47-
with:
48-
profile: minimal
49-
toolchain: stable
50-
override: true
51-
- name: Install target
45+
- name: "Select toolchain"
46+
uses: dtolnay/rust-toolchain@stable
47+
- name: "Install target"
5248
run: rustup target add ${{ matrix.arch }}
53-
- name: install cross
49+
- name: "Install cross"
5450
run: cargo install cross
55-
- name: run cross test
51+
- name: "Run cross test"
5652
run: cross test --target ${{ matrix.arch }} --verbose

0 commit comments

Comments
 (0)