We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94fa1a8 commit 2d5f918Copy full SHA for 2d5f918
1 file changed
jenkins/scripts/select-compiler.sh
@@ -43,6 +43,13 @@ if [ "$NODEJS_MAJOR_VERSION" -ge "25" ]; then
43
echo "Compiler set to Clang" `${CXX} -dumpversion`
44
return
45
;;
46
+ *debian12*)
47
+ echo "Using Clang for Node.js $NODEJS_MAJOR_VERSION"
48
+ export CC="ccache clang-19"
49
+ export CXX="ccache clang++-19"
50
+ echo "Compiler set to Clang" `${CXX} -dumpversion`
51
+ return
52
+ ;;
53
esac
54
fi
55
0 commit comments