From e10187d8854533b1b391e982260d0b9ea5215af9 Mon Sep 17 00:00:00 2001 From: Oscar Reparaz Date: Fri, 12 Jan 2024 11:32:33 -0800 Subject: [PATCH] ci: try to fix broken apt install --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 368e2d7..98258ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build - run: sudo apt-get install gcc-multilib g++-multilib && make -j + run: sudo apt-get update && sudo apt-get install gcc-multilib g++-multilib && make -j macos: runs-on: macos-latest @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build - run: sudo apt-get install gcc-multilib g++-multilib && make -j + run: sudo apt-get update && sudo apt-get install gcc-multilib g++-multilib && make -j # this is too flakey in github actions #- name: Run tests # run: python3 test.py