diff options
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d00a04c..101097e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,6 +41,7 @@ jobs: - name: Install dependencies (Ubuntu) if: ${{ matrix.os == 'ubuntu-latest' }} run: | + sudo apt update sudo apt install -y libcmocka-dev ninja-build ronn if [[ "${{ matrix.variant }}" = "memcheck" ]]; then sudo apt install -y valgrind @@ -142,6 +143,7 @@ jobs: - name: Install dependencies run: | + sudo apt update sudo apt install -y ninja-build ronn if [[ "${{ matrix.pkg }}" = "windows-i686" ]]; then sudo apt install -y gcc-mingw-w64-i686 @@ -203,7 +205,9 @@ jobs: path: source - name: Install dependencies - run: sudo apt install -y ninja-build ronn + run: | + sudo apt update + sudo apt install -y ninja-build ronn - name: Validate source run: | |