From 636f6fe30fa8ad1c82cb62149b28ca97550a5725 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 16 Aug 2024 18:42:53 -0400 Subject: [PATCH] Fix TGS CI (#85902) - Update dreamluau dependency. - Add missing native dependencies. Closes #85731 --- dependencies.sh | 2 +- tools/tgs_scripts/InstallDeps.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dependencies.sh b/dependencies.sh index d6600a5ff58b4..8fff303d2c7ed 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -25,7 +25,7 @@ export PYTHON_VERSION=3.9.0 export DREAMLUAU_REPO="tgstation/dreamluau" #dreamluau git tag -export DREAMLUAU_VERSION=0.1.0 +export DREAMLUAU_VERSION=0.1.1 #hypnagogic repo export CUTTER_REPO=spacestation13/hypnagogic diff --git a/tools/tgs_scripts/InstallDeps.sh b/tools/tgs_scripts/InstallDeps.sh index e66053ab89c7c..14b9e99eb4629 100755 --- a/tools/tgs_scripts/InstallDeps.sh +++ b/tools/tgs_scripts/InstallDeps.sh @@ -17,11 +17,11 @@ if ! ( [ -x "$has_git" ] && [ -x "$has_curl" ] && [ -f "/usr/lib/i386-linux-gnu/ if ! [ -x "$has_sudo" ]; then dpkg --add-architecture i386 apt-get update - apt-get install -y lib32z1 git pkg-config libssl-dev:i386 libssl-dev zlib1g-dev:i386 curl + apt-get install -y lib32z1 git pkg-config libssl-dev:i386 libssl-dev zlib1g-dev:i386 curl libclang-dev g++-multilib else sudo dpkg --add-architecture i386 sudo apt-get update - sudo apt-get install -y lib32z1 git pkg-config libssl-dev:i386 libssl-dev zlib1g-dev:i386 curl + sudo apt-get install -y lib32z1 git pkg-config libssl-dev:i386 libssl-dev zlib1g-dev:i386 curl libclang-dev g++-multilib fi fi