Skip to content

Commit

Permalink
GA: run apt-get update before installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Mar 29, 2022
1 parent 6aa3838 commit 75269d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down Expand Up @@ -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' }}
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 75269d3

Please sign in to comment.