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 644a964 commit 79a600fCopy full SHA for 79a600f
jenkins/scripts/select-compiler.sh
@@ -196,6 +196,20 @@ elif [ "$SELECT_ARCH" = "ARM64" ]; then
196
. /opt/rh/devtoolset-6/enable
197
echo "Compiler set to devtoolset-6"
198
;;
199
+ *ubuntu1804* )
200
+ if [ "$NODEJS_MAJOR_VERSION" -gt "15" ]; then
201
+ export CC="ccache gcc-8"
202
+ export CXX="ccache g++-8"
203
+ export GCOV="gcov-8"
204
+ export LINK="g++-8"
205
+ else
206
+ export CC="ccache gcc-6"
207
+ export CXX="ccache g++-6"
208
+ export GCOV="gcov-6"
209
+ export LINK="g++-6"
210
+ fi
211
+ echo "Compiler set to GCC" `$CXX -dumpversion`
212
+ ;;
213
esac
214
215
fi
0 commit comments