From 83064efbf85fb74af5950fc38e0f283c3a1ac2f5 Mon Sep 17 00:00:00 2001 From: Areloch Date: Tue, 1 Nov 2022 12:11:45 -0500 Subject: [PATCH] Tweak to the linux platform CICD testing to force it to run apt-get update before installing additional packages, which in theory will reduce the incidence rate of failing to spool up. --- .github/workflows/cmake.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index d9db6e6f8..a33284581 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -28,6 +28,7 @@ jobs: - name: Setup Environment run: | if [ "$RUNNER_OS" == "Linux" ]; then + sudo apt-get update \ sudo apt-get install -y \ build-essential \ nasm \