CI: use apt-get update to fix libasound2-dev (#665)

CI was failing when it tried to install libasound2-dev.

Fixes #664
This commit is contained in:
Phil Burk 2021-11-13 12:47:32 -08:00 committed by GitHub
parent 04af4b16f1
commit 9a89bc2383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ jobs:
- name: checkout Git repository
uses: actions/checkout@v2
- name: "[Ubuntu] install dependencies"
run: sudo apt-get install libasound2-dev ${{ matrix.dependencies_extras }}
run: |
sudo apt-get update
sudo apt-get install libasound2-dev ${{ matrix.dependencies_extras }}
if: matrix.os == 'ubuntu-latest'
- name: "[Windows/MinGW] set up ASIO SDK cache"
uses: actions/cache@v2