Skip to content

Commit 896e834

Browse files
authored
jenkins: fix arm64 debug build compiler selection (#3493)
Debug builds are not suffixed with `_sharedlibs` so were not matching the intended case selection.
1 parent 12ecb2d commit 896e834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jenkins/scripts/select-compiler.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ elif [ "$SELECT_ARCH" = "ARM64" ]; then
239239
fi
240240
echo "Compiler set to GCC" `$CXX -dumpversion`
241241
;;
242-
*ubuntu2004_sharedlibs* )
242+
*ubuntu2004* )
243243
if [ "$NODEJS_MAJOR_VERSION" -gt "19" ]; then
244244
export CC="ccache gcc-10"
245245
export CXX="ccache g++-10"

0 commit comments

Comments
 (0)