[jenkins] Add fullaot_llvm CI tag and rename aot_only to fullaot
authorLudovic Henry <ludovic@xamarin.com>
Wed, 7 Dec 2016 20:53:22 +0000 (15:53 -0500)
committerLudovic Henry <ludovic@xamarin.com>
Wed, 7 Dec 2016 20:53:22 +0000 (15:53 -0500)
scripts/ci/run-jenkins.sh

index 4270ee2372692c30801ed0078a363be6fd5c66fe..fc26692d0c9f86f22e838899ad6d0c5958254bac 100755 (executable)
@@ -22,7 +22,10 @@ if [[ ${label} == 'osx-amd64' ]]; then EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --w
 if [[ ${label} == 'w32' ]]; then PLATFORM=Win32; EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --host=i686-w64-mingw32 --with-csc=mcs"; export MONO_EXECUTABLE="`cygpath -u ${WORKSPACE}\\\msvc\\\build\\\sgen\\\Win32\\\bin\\\Release\\\mono-sgen.exe`"; fi
 if [[ ${label} == 'w64' ]]; then PLATFORM=x64; EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --host=x86_64-w64-mingw32 --disable-boehm"; export MONO_EXECUTABLE="`cygpath -u ${WORKSPACE}\\\msvc\\\build\\\sgen\\\x64\\\bin\\\Release\\\mono-sgen.exe`"; fi
 
-if [[ ${CI_TAGS} == *'aot_only'* ]];
+if [[ ${CI_TAGS} == *'fullaot_llvm'* ]];
+    then
+    EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_only --enable-llvm=yes";
+elif [[ ${CI_TAGS} == *'fullaot'* ]];
     then
     EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_only";
 elif [[ ${CI_TAGS} == *'hybridaot_llvm'* ]];