ci: need apt-get update

This commit is contained in:
Michael Davidsaver
2020-11-20 17:23:43 -08:00
parent d24a297304
commit 53897d4a82

View File

@@ -104,12 +104,15 @@ jobs:
with:
submodules: true
- name: "apt-get install"
run: sudo apt-get -y install qemu-system-x86 g++-mingw-w64-x86-64 gdb
run: |
sudo apt-get update
sudo apt-get -y install qemu-system-x86 g++-mingw-w64-x86-64 gdb
if: runner.os == 'Linux'
- name: "apt-get install ${{ matrix.cmp }}"
run: |
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get -y install ${{ matrix.cmp }}
if: matrix.utoolchain
- name: Prepare and compile dependencies