From 75269d308997c9aac8480e93923d299d3bc1c014 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 29 Mar 2022 16:01:09 +0200 Subject: [PATCH] GA: run apt-get update before installing dependencies --- .github/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 71e453b..00a0b12 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,6 +16,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Linux dependencies run: | + sudo apt-get update sudo apt-get install -y cmake ninja-build libboost-test-dev - name: Configure run: | @@ -33,6 +34,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Linux dependencies run: | + sudo apt-get update sudo apt-get install -y cmake ninja-build gcc-9-i686-linux-gnu g++-9-i686-linux-gnu - name: Configure run: | @@ -76,6 +78,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Linux dependencies run: | + sudo apt-get update sudo apt-get install -y ${{ matrix.cfg.compiler }} cmake ninja-build pkg-config libm4ri-dev libboost-test-dev sudo apt-get install -y ${{ matrix.cfg.cxxcompiler }} || true if: ${{ runner.os == 'Linux' }} @@ -203,6 +206,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Linux dependencies run: | + sudo apt-get update sudo apt-get install cmake ninja-build clang-12 - name: Configure run: |