From a0d596e0acfbe6dfe0a79e85dffc10171de38d6b Mon Sep 17 00:00:00 2001 From: Dominion Date: Sun, 14 May 2023 11:03:43 -0400 Subject: [PATCH] CI fixes and updates - Install whatever package GitHub is complaining about - Bump CI BYOND to 1606 --- .github/workflows/ci-suite.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index bb514afdd4..c5d154e8e2 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -103,14 +103,14 @@ jobs: if: "!(cancelled() || failure()) && needs.start-ci-run-gate.result == 'success'" env: BYOND_MAJOR: 515 - BYOND_MINOR: 1592 + BYOND_MINOR: 1606 runs-on: ubuntu-latest steps: - name: Install x86 libc Dependencies run: | sudo dpkg --add-architecture i386 sudo apt-get update - sudo apt-get install -y -o APT::Immediate-Configure=0 libc6-i386 libstdc++6:i386 + sudo apt-get install -y -o APT::Immediate-Configure=0 libc6-i386 libstdc++6:i386 libgcc-s1:i386 - name: Install BYOND if: steps.cache-byond.outputs.cache-hit != 'true' @@ -436,7 +436,7 @@ jobs: run: | sudo dpkg --add-architecture i386 sudo apt-get update - sudo apt-get install -y -o APT::Immediate-Configure=0 libc6-i386 libstdc++6:i386 gdb + sudo apt-get install -y -o APT::Immediate-Configure=0 libc6-i386 libstdc++6:i386 gdb libgcc-s1:i386 - name: Install Node 12.X uses: actions/setup-node@v3