From bde1f2455254a2d5cac09b85c588493c4bc625af Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 5 Dec 2023 15:16:52 +0100 Subject: [PATCH] fix runtime deps for tests runs --- .github/workflows/linux.yml | 8 ++++++-- scripts/debian-11/4-install-runtime-deps.sh | 1 - scripts/ubuntu-22.04/4-install-runtime-deps.sh | 1 - 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4cb2c48..9ecf1bb 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -108,7 +108,9 @@ jobs: name: BeamMP-Server-debian-tests - name: Install Runtime Dependencies - run: bash ./scripts/debian-11/4-install-runtime-deps.sh + run: | + apt-get update -y + apt-get install -y liblua5.3-0 - name: Test run: | @@ -126,7 +128,9 @@ jobs: name: BeamMP-Server-ubuntu-tests - name: Install Runtime Dependencies - run: bash ./scripts/ubuntu-22.04/4-install-runtime-deps.sh + run: | + apt-get update -y + apt-get install -y liblua5.3-0 - name: Test run: | diff --git a/scripts/debian-11/4-install-runtime-deps.sh b/scripts/debian-11/4-install-runtime-deps.sh index afbe3b9..e3a40b8 100755 --- a/scripts/debian-11/4-install-runtime-deps.sh +++ b/scripts/debian-11/4-install-runtime-deps.sh @@ -3,7 +3,6 @@ set -ex apt-get update -y -apt-get upgrade -y apt-get install -y liblua5.3-0 curl diff --git a/scripts/ubuntu-22.04/4-install-runtime-deps.sh b/scripts/ubuntu-22.04/4-install-runtime-deps.sh index afbe3b9..e3a40b8 100755 --- a/scripts/ubuntu-22.04/4-install-runtime-deps.sh +++ b/scripts/ubuntu-22.04/4-install-runtime-deps.sh @@ -3,7 +3,6 @@ set -ex apt-get update -y -apt-get upgrade -y apt-get install -y liblua5.3-0 curl