apt update before install in workflow

This commit is contained in:
Luke Parker 2023-09-15 14:54:55 -04:00
parent 142552f024
commit 3d464c4736
No known key found for this signature in database

View file

@ -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