Skip to content

Commit 5989ef4

Browse files
authored
Update Rust toolchain installation method (#717)
Replaced actions-rs/toolchain with rustup target add.
1 parent 59c8246 commit 5989ef4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ffi-builds.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,9 @@ jobs:
116116
with:
117117
submodules: true
118118

119-
- uses: actions-rs/toolchain@v1
120-
with:
121-
toolchain: stable
122-
target: ${{ matrix.target }}
119+
- name: Install Rust toolchain.
120+
run: |
121+
rustup target add ${{ matrix.target }}
123122
124123
- name: Set up QEMU
125124
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}

0 commit comments

Comments
 (0)