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.

This commit is contained in:
Areloch 2022-11-01 12:11:45 -05:00
parent 84f1e673fc
commit 83064efbf8

View file

@ -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 \