Add travis builds
This commit is contained in:
23
buildViaTravis.sh
Executable file
23
buildViaTravis.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
# This script will build the project.
|
||||
|
||||
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||||
echo -e "Build Pull Request #$TRAVIS_PULL_REQUEST => Branch [$TRAVIS_BRANCH]"
|
||||
./gradlew build
|
||||
elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then
|
||||
echo -e 'Build Branch without Snapshot => Branch ['$TRAVIS_BRANCH']'
|
||||
./gradlew -Prelease.travisci=true build --info
|
||||
elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ]; then
|
||||
echo -e 'Build Branch for Release => Branch ['$TRAVIS_BRANCH'] Tag ['$TRAVIS_TAG']'
|
||||
case "$TRAVIS_TAG" in
|
||||
*-rc\.*)
|
||||
./gradlew -Prelease.travisci=true -Prelease.useLastTag=true candidate --info
|
||||
;;
|
||||
*)
|
||||
./gradlew -Prelease.travisci=true -Prelease.useLastTag=true final --info
|
||||
;;
|
||||
esac
|
||||
else
|
||||
echo -e 'WARN: Should not be here => Branch ['$TRAVIS_BRANCH'] Tag ['$TRAVIS_TAG'] Pull Request ['$TRAVIS_PULL_REQUEST']'
|
||||
./gradlew build
|
||||
fi
|
||||
Reference in New Issue
Block a user