From 23077affda09517eafbc2b0e3aaca977998bd0c0 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 20 Sep 2023 17:34:03 +0100 Subject: [PATCH] jenkins: fix arm64 debug build compiler selection Debug builds are not suffixed with `_sharedlibs` so were not matching the intended case selection. --- jenkins/scripts/select-compiler.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/scripts/select-compiler.sh b/jenkins/scripts/select-compiler.sh index e5f6bd12b..c94661424 100644 --- a/jenkins/scripts/select-compiler.sh +++ b/jenkins/scripts/select-compiler.sh @@ -239,7 +239,7 @@ elif [ "$SELECT_ARCH" = "ARM64" ]; then fi echo "Compiler set to GCC" `$CXX -dumpversion` ;; - *ubuntu2004_sharedlibs* ) + *ubuntu2004* ) if [ "$NODEJS_MAJOR_VERSION" -gt "19" ]; then export CC="ccache gcc-10" export CXX="ccache g++-10"