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 18, 2021
1 parent 84a9942 commit 997a005
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
fetch-depth: 0
- name: install dependencies
run:
sudo apt-get install g++-8 autoconf-archive cmake ${{matrix.deps}}
sudo apt-get update
&& sudo apt-get install g++-8 autoconf-archive cmake ${{matrix.deps}}
- name: automake
run:
env NOCONFIGURE=1 ./autogen.sh && mkdir bld-automake && cd bld-automake
Expand Down Expand Up @@ -62,7 +63,9 @@ 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 997a005

Please sign in to comment.