From: Ludovic Henry Date: Wed, 7 Dec 2016 20:27:22 +0000 (-0500) Subject: [jenkins] Fix order of CI tags X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=d78854f3bf5508e93126aae294e2fd9cfc23290f;p=mono.git [jenkins] Fix order of CI tags --- diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh index 144e75f8c74..4270ee23726 100755 --- a/scripts/ci/run-jenkins.sh +++ b/scripts/ci/run-jenkins.sh @@ -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";