Skip to content

Commit

Permalink
CI: run apt-get update before installing g++-multilib
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed Mar 9, 2022
1 parent 27c9247 commit 47f90b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -132,7 +132,9 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Install
run: sudo apt-get install -y g++-multilib
run: |
sudo apt-get update
sudo apt-get install -y g++-multilib
- name: Checkout
uses: actions/checkout@v2
- name: GCC 32-bit
Expand Down

0 comments on commit 47f90b0

Please sign in to comment.