install a default stable toolchain before cargo build tries to install cross

This commit is contained in:
Tamo 2024-07-11 11:52:42 +02:00 committed by curquiza
parent 7da95d62e2
commit c85dd9f635

View File

@ -162,6 +162,9 @@ jobs:
echo '[target.aarch64-unknown-linux-gnu]' >> ~/.cargo/config
echo 'linker = "aarch64-linux-gnu-gcc"' >> ~/.cargo/config
echo 'JEMALLOC_SYS_WITH_LG_PAGE=16' >> $GITHUB_ENV
- name: Install a default toolchain that will be used to build cargo cross
run: |
rustup default stable
- name: Cargo build
uses: actions-rs/cargo@v1
with: