diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62b017194..96624b785 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,9 @@ jobs: run: sudo security authorizationdb write system.privilege.taskport allow - name: Install gcc-multilib if: matrix.id == 'linux-x86' - run: sudo apt-get install gcc-multilib lib32stdc++-11-dev + run: | + sudo apt-get update + sudo apt-get install gcc-multilib lib32stdc++-11-dev - name: Build if: ${{ startsWith(matrix.id, 'windows-') }} run: | @@ -87,7 +89,9 @@ jobs: with: submodules: recursive - name: Install toolchain - run: sudo apt-get install ${{ matrix.pkg }} + run: | + sudo apt-get update + sudo apt-get install ${{ matrix.pkg }} - name: Build run: | ./configure ${{ matrix.opts }} ${{ env.FRIDA_CORE_OPTIONS }}