Skip to content

Commit

Permalink
[github actions] add apt-get update
Browse files Browse the repository at this point in the history
  • Loading branch information
radarsat1 committed Nov 14, 2021
1 parent 93e14ab commit d8f189b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
fetch-depth: 0
- name: install dependencies
run:
sudo apt-get install g++-8 autoconf-archive libasound-dev doxygen
sudo apt-get update
&& sudo apt-get install g++-8 autoconf-archive libasound-dev doxygen
- name: automake
run:
(./autogen.sh || (cat config.log; false))
Expand Down Expand Up @@ -49,7 +50,8 @@ jobs:
fetch-depth: 0
- name: install dependencies
run:
sudo apt-get install g++-8 autoconf-archive cmake python3-pip ninja-build doxygen ${{matrix.deps}}
sudo apt-get update
&& sudo apt-get install g++-8 autoconf-archive cmake python3-pip ninja-build doxygen ${{matrix.deps}}
&& sudo pip install meson>=0.55.0
- name: automake
run:
Expand Down Expand Up @@ -105,7 +107,7 @@ jobs:
with:
fetch-depth: 0
- name: install dependencies
run: sudo apt-get install g++-mingw-w64 autoconf-archive
run: sudo apt-get update && sudo apt-get install g++-mingw-w64 autoconf-archive
- name: automake
run:
env NOCONFIGURE=1 ./autogen.sh
Expand Down

0 comments on commit d8f189b

Please sign in to comment.