From d78854f3bf5508e93126aae294e2fd9cfc23290f Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Wed, 7 Dec 2016 15:27:22 -0500 Subject: [PATCH] [jenkins] Fix order of CI tags --- scripts/ci/run-jenkins.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"; -- 2.25.1