File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
44if [ " $TRAVIS_PULL_REQUEST " != " false" ]; then
55 echo -e " Build Pull Request #$TRAVIS_PULL_REQUEST => Branch [$TRAVIS_BRANCH ]"
6- ./gradlew build
6+ ./gradlew test
77elif [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_TAG " == " " ]; then
88 echo -e ' Build Branch with Snapshot => Branch [' $TRAVIS_BRANCH ' ]'
9- ./gradlew -Prelease.travisci=true assemble
9+ ./gradlew -Prelease.travisci=true test
1010elif [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_TAG " != " " ]; then
1111 echo -e ' Build Branch for Release => Branch [' $TRAVIS_BRANCH ' ] Tag [' $TRAVIS_TAG ' ]'
1212 case " $TRAVIS_TAG " in
@@ -19,5 +19,5 @@ elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ]; then
1919 esac
2020else
2121 echo -e ' WARN: Should not be here => Branch [' $TRAVIS_BRANCH ' ] Tag [' $TRAVIS_TAG ' ] Pull Request [' $TRAVIS_PULL_REQUEST ' ]'
22- ./gradlew build -x check
22+ ./gradlew build
2323fi
You can’t perform that action at this time.
0 commit comments