We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae4a40 commit a8f7b48Copy full SHA for a8f7b48
gradle/buildViaTravis.sh
@@ -3,6 +3,13 @@
3
4
git fsck --full
5
6
+buildTag="$TRAVIS_TAG"
7
+
8
+if [ "$buildTag" != "" ] && [ "${buildTag:0:3}" != "v1." ]; then
9
+ echo -e "Wrong tag on the 1.x brach: $buildTag : build stopped"
10
+ exit 1
11
+fi
12
13
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
14
echo -e "Build Pull Request #$TRAVIS_PULL_REQUEST => Branch [$TRAVIS_BRANCH]"
15
./gradlew -Prelease.useLastTag=true build --stacktrace
0 commit comments