From 678d0714c92193f4f617d40a485e6bf7a5643621 Mon Sep 17 00:00:00 2001 From: Ilya Sytchev Date: Thu, 30 Mar 2023 09:50:14 -0400 Subject: [PATCH] Make dependency installation more reliable --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4e0aec6c..59ece58c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,9 @@ jobs: - name: Install Forest dependencies # required by librosa if: ${{ startsWith(matrix.os, 'ubuntu') }} - run: sudo apt-get install -y ffmpeg libsndfile1 + run: | + sudo apt-get update + sudo apt-get install -y ffmpeg libsndfile1 - name: Install Forest run: pip install -e . - name: Install dev dependecies