Skip to content

Commit

Permalink
jenkins: fix arm64 debug build compiler selection (#3493)
Browse files Browse the repository at this point in the history
Debug builds are not suffixed with `_sharedlibs` so were not matching
the intended case selection.
  • Loading branch information
richardlau authored Sep 21, 2023
1 parent 12ecb2d commit 896e834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/scripts/select-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 896e834

Please sign in to comment.