Skip to content

Commit

Permalink
Run apt-get update before installing packages from APT (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
kulp committed Mar 20, 2021
1 parent 3f72436 commit 763ca54
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
JIT: 0
runs-on: ubuntu-20.04
steps:
- run: sudo apt-get update
- name: install expect
run: sudo apt-get install expect # for unbuffer
- name: install wine
Expand All @@ -43,6 +44,7 @@ jobs:
GCOV: 1
runs-on: ubuntu-20.04
steps:
- run: sudo apt-get update
- run: sudo apt-get install expect iverilog lcov
- run: sudo apt-get install libsdl2-dev libsdl2-image-dev
- uses: actions/checkout@v2
Expand All @@ -67,6 +69,8 @@ jobs:
os: [ubuntu-18.04, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- if: runner.os == 'Linux'
run: sudo apt-get update
- if: runner.os == 'Linux'
run: sudo apt-get install expect iverilog
- if: runner.os == 'Linux' && env.SDL != 0
Expand Down

0 comments on commit 763ca54

Please sign in to comment.