Skip to content

Commit

Permalink
ci: try to fix broken apt install
Browse files Browse the repository at this point in the history
  • Loading branch information
oreparaz committed Jan 12, 2024
1 parent 04235f7 commit e10187d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e10187d

Please sign in to comment.