Skip to content

Commit

Permalink
ci: 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 8c74aae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
CC: gcc
steps:
- uses: actions/checkout@v3
- run: sudo apt install -y make gcc
- run: sudo apt-get update && sudo apt install -y make gcc
- run: gcc --version
- run: make CFLAGS="-g -fno-omit-frame-pointer -fsanitize=address" LDFLAGS="-fsanitize=address"
# if timeouts (return code 124), consider it a success
Expand Down
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 8c74aae

Please sign in to comment.