Skip to content

Commit 30685d2

Browse files
committed
Fix cross build test.
The cross build test checks that `Rand` can be cross built for mips. The Rust project no longer provides binaries for that target. Switch to arm, as on the `master` branch.
1 parent 1c5a859 commit 30685d2

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,18 +115,16 @@ jobs:
115115
matrix:
116116
include:
117117
- os: ubuntu-latest
118-
target: mips-unknown-linux-gnu
118+
target: powerpc-unknown-linux-gnu
119119
toolchain: stable
120120

121121
steps:
122-
- uses: actions/checkout@v2
122+
- uses: actions/checkout@v6
123123
- name: Install toolchain
124-
uses: actions-rs/toolchain@v1
124+
uses: dtolnay/rust-toolchain@master
125125
with:
126-
profile: minimal
127126
target: ${{ matrix.target }}
128127
toolchain: ${{ matrix.toolchain }}
129-
override: true
130128
- name: Cache cargo plugins
131129
uses: actions/cache@v5
132130
with:

0 commit comments

Comments
 (0)