From 39fb0755bacaea3e5516aa5b764c4702773f3532 Mon Sep 17 00:00:00 2001 From: Bart Trojanowski Date: Thu, 19 Feb 2026 14:30:38 -0500 Subject: [PATCH] ci workflow: apt update before dependencies.sh --- .github/workflows/cmake-single-platform.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 0fb81c8..6855310 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -24,7 +24,9 @@ jobs: - uses: actions/checkout@v4 - name: Dependencies - run: ./dependencies.sh ${{ matrix.compiler }} + run: | + sudo apt update + ./dependencies.sh ${{ matrix.compiler }} - name: Setup compiler run: | @@ -60,4 +62,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: testing-with-${{ matrix.compiler }}-${{ matrix.build_type }}.log - path: ${{github.workspace}}/build-${{ matrix.compiler }}-${{ matrix.build_type }}/Testing/Temporary/LastTest.log \ No newline at end of file + path: ${{github.workspace}}/build-${{ matrix.compiler }}-${{ matrix.build_type }}/Testing/Temporary/LastTest.log