From: Ludovic Henry Date: Wed, 7 Dec 2016 22:07:54 +0000 (-0500) Subject: [jenkins] Rename runtime presets to match CI tags X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=6f4d780594e069b76912fc068bb2a54bcf9e463a;p=mono.git [jenkins] Rename runtime presets to match CI tags --- diff --git a/configure.ac b/configure.ac index b96b2018f19..14d6e04f252 100644 --- a/configure.ac +++ b/configure.ac @@ -799,7 +799,7 @@ AC_ARG_WITH(xammac, [ --with-xammac=yes,no If you want to b AC_ARG_WITH(aot_hybrid, [ --with-aot_hybrid=yes,no If you want to build the aot_hybrid assemblies (defaults to no)], [], [with_aot_hybrid=default]) AC_ARG_WITH(aot_only, [ --with-aot_only=yes,no If you want to build the aot_only assemblies (defaults to no)], [], [with_aot_only=default]) -AC_ARG_WITH(runtime_preset, [ --with-runtime_preset=net_4_x,all,aot,aot_preferred,aot_only,bitcode Which default profile to build (defaults to net_4_x)], [], [with_runtime_preset=net_4_x]) +AC_ARG_WITH(runtime_preset, [ --with-runtime_preset=net_4_x,all,aot,hybridaot,fullaot,bitcode Which default profile to build (defaults to net_4_x)], [], [with_runtime_preset=net_4_x]) dnl dnl Profile defaults @@ -832,7 +832,7 @@ elif test x$with_runtime_preset = xall; then with_monotouch_watch_default=yes with_monotouch_tv_default=yes with_xammac_default=yes -elif test x$with_runtime_preset = xaot_only; then +elif test x$with_runtime_preset = xfullaot; then DISABLE_MCS_DOCS_default=yes with_aot_only_default=yes TEST_PROFILE=aot_only @@ -861,7 +861,7 @@ elif test x$with_runtime_preset = xbitcode; then AOT_BUILD_FLAGS="--aot=llvmonly,$INVARIANT_AOT_OPTIONS" AOT_RUN_FLAGS="--llvmonly" -elif test x$with_runtime_preset = xaot_preferred; then +elif test x$with_runtime_preset = xhybridaot; then DISABLE_MCS_DOCS_default=yes with_aot_hybrid_default=yes TEST_PROFILE=aot_hybrid diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh index b27a3067c50..16555a6ae28 100755 --- a/scripts/ci/run-jenkins.sh +++ b/scripts/ci/run-jenkins.sh @@ -26,16 +26,16 @@ if [[ ${label} == 'w64' ]]; then PLATFORM=x64; EXTRA_CONF_FLAGS="${EXTRA_CONF_FL if [[ ${CI_TAGS} == *'fullaot_llvm'* ]]; then - EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_only --enable-llvm=yes"; + EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=fullaot --enable-llvm=yes"; elif [[ ${CI_TAGS} == *'fullaot'* ]]; then - EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_only"; + EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=fullaot"; elif [[ ${CI_TAGS} == *'hybridaot_llvm'* ]]; then - EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_preferred --enable-llvm=yes"; + EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=hybridaot --enable-llvm=yes"; elif [[ ${CI_TAGS} == *'hybridaot'* ]]; then - EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot_preferred"; + EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=hybridaot"; elif [[ ${CI_TAGS} == *'aot_llvm'* ]]; then EXTRA_CONF_FLAGS="${EXTRA_CONF_FLAGS} --with-runtime_preset=aot --enable-llvm=yes";