Changes order of pre-release tests.

This commit is contained in:
Krunoslav Zaher 2016-08-20 23:06:30 +02:00
parent ff6e4fd651
commit 92d4bdf5e1
2 changed files with 7 additions and 32 deletions

View File

@ -38,37 +38,9 @@
<Group
location = "group:scripts"
name = "scripts">
<Group
location = "group:automation-tests"
name = "automation-tests">
<FileRef
location = "group:01_githubSignUp.js">
</FileRef>
<FileRef
location = "group:02_searchWikipedia.js">
</FileRef>
<FileRef
location = "group:03_masterDetail.js">
</FileRef>
<FileRef
location = "group:04_controlsTests.js">
</FileRef>
<FileRef
location = "group:05_reactivePartialUpdates.js">
</FileRef>
<FileRef
location = "group:common.js">
</FileRef>
<FileRef
location = "group:main.js">
</FileRef>
</Group>
<FileRef
location = "group:all-tests.sh">
</FileRef>
<FileRef
location = "group:automation-tests.sh">
</FileRef>
<FileRef
location = "group:common.sh">
</FileRef>

View File

@ -59,22 +59,25 @@ if [ "${RELEASE_TEST}" -eq 1 ]; then
fi
if [ "${RELEASE_TEST}" -eq 1 ]; then
scripts/validate-markdown.sh
scripts/validate-podspec.sh
scripts/validate-markdown.sh
fi
if [ "${RELEASE_TEST}" -eq 1 ]; then
for configuration in ${CONFIGURATIONS[@]}
do
rx "RxSwift-tvOS" ${configuration} "Krunoslav Zahers iPhone" test
rx "RxExample-iOS" ${configuration} "Krunoslav Zahers iPhone" test
done
for configuration in ${CONFIGURATIONS[@]}
do
rx "RxSwift-tvOS" ${configuration} $DEFAULT_TVOS_SIMULATOR test
rx "RxExample-iOS" ${configuration} $DEFAULT_TVOS_SIMULATOR test
done
fi
if [ "${RELEASE_TEST}" -eq 1 ]; then
scripts/validate-podspec.sh
fi
#make sure all tvOS tests pass
if [ $TV_OS -eq 1 ]; then
for configuration in ${CONFIGURATIONS[@]}