mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-23 03:59:22 +00:00
apt update before install in workflow
This commit is contained in:
parent
142552f024
commit
3d464c4736
1 changed files with 1 additions and 1 deletions
2
.github/workflows/no-std.yml
vendored
2
.github/workflows/no-std.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
github-token: ${{ inputs.github-token }}
|
||||
|
||||
- name: Install RISC-V Toolchain
|
||||
run: sudo apt install -y gcc-riscv64-unknown-elf gcc-multilib
|
||||
run: sudo apt update && sudo apt install -y gcc-riscv64-unknown-elf gcc-multilib
|
||||
|
||||
- name: Verify no-std builds
|
||||
run: cd tests/no-std && CFLAGS=-I/usr/include cargo build --target riscv32imac-unknown-none-elf
|
||||
|
|
Loading…
Reference in a new issue