diff options
| author | Stephen Sinclair <radarsat1@gmail.com> | 2021-11-14 19:54:25 +0100 |
|---|---|---|
| committer | Stephen Sinclair <radarsat1@gmail.com> | 2021-11-14 19:54:25 +0100 |
| commit | d8f189b660bdb5a05bdb7a69ff81b6a4d71d39bf (patch) | |
| tree | eed7714db917255cb71d80dd357dd32a2cf4e8eb /.github/workflows | |
| parent | 93e14ab7f850c21d503e5a97ab002fa69be8fcb6 (diff) | |
[github actions] add apt-get update
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9360351..2980085 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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)) @@ -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: @@ -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 |
