Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Urban <bernhard.urban@xamarin.com>2018-07-11 00:49:51 +0300
committermonojenkins <jo.shields+jenkins@xamarin.com>2018-07-11 00:49:51 +0300
commita0d0af6d3998fcd969ca09659fd72d49bbf14193 (patch)
tree3cb0bdc8ad8db7a309e1dd621e2785a4ac485aa7 /scripts
parenteb972950c1439917b662dcc5be207a8223976713 (diff)
[ios sdk] add interp-only support (#9427)
[ios sdk] add interp-only support depends on https://github.com/mono/mono/pull/9295 should be backported to `2018-06`
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-jenkins.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index 8a9d81ec5ea..29f210f1818 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -102,6 +102,10 @@ if [[ ${CI_TAGS} == *'product-sdks-ios'* ]];
if [[ ${CI_TAGS} == *'run-device-tests'* ]]; then
for suite in ${device_test_suites}; do ${TESTCMD} --label=run-ios-dev-llvm-${suite} --timeout=10m make -C sdks/ios run-ios-dev-${suite}; done
fi
+ ${TESTCMD} --label=build-ios-dev-interp-only --timeout=60m make -C sdks/ios build-ios-dev-interp-only-all
+ if [[ ${CI_TAGS} == *'run-device-tests'* ]]; then
+ for suite in ${device_test_suites}; do ${TESTCMD} --label=run-ios-dev-interp-only-${suite} --timeout=10m make -C sdks/ios run-ios-dev-${suite}; done
+ fi
${TESTCMD} --label=package --timeout=60m tar cvzf mono-product-sdk-$GIT_COMMIT.tar.gz -C sdks/out/ bcl ios-llvm64 ios-llvm32 ios-cross32-release ios-cross64-release
exit 0
fi