[jenkins] Fix order of CI tags
authorLudovic Henry <ludovic@xamarin.com>
Wed, 7 Dec 2016 20:27:22 +0000 (15:27 -0500)
committerLudovic Henry <ludovic@xamarin.com>
Wed, 7 Dec 2016 20:27:22 +0000 (15:27 -0500)
scripts/ci/run-jenkins.sh

index 144e75f8c74e35a31ecaf31eade4308cc93c552d..4270ee2372692c30801ed0078a363be6fd5c66fe 100755 (executable)
@@ -25,12 +25,12 @@ if [[ ${label} == 'w64' ]]; then PLATFORM=x64; EXTRA_CONF_FLAGS="${EXTRA_CONF_FL
 if [[ ${CI_TAGS} == *'aot_only'* ]];
     then
     EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_only";
-elif [[ ${CI_TAGS} == *'hybridaot'* ]];
-    then
-    EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_preferred";
 elif [[ ${CI_TAGS} == *'hybridaot_llvm'* ]];
     then
     EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_preferred --enable-llvm=yes";
+elif [[ ${CI_TAGS} == *'hybridaot'* ]];
+    then
+    EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_preferred";
 elif [[ ${CI_TAGS} == *'acceptance-tests'* ]];
     then
     EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --prefix=${WORKSPACE}/tmp/mono-acceptance-tests --with-sgen-default-concurrent=yes";