diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..efe8248 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +include '3.3.x', '3.2.x' diff --git a/travis-build.sh b/travis-build.sh index 82916ea..1c2a716 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -1,16 +1,12 @@ #!/bin/bash set -e -cd 3.2.x -./gradlew clean check --stacktrace -cd ../3.3.x -./gradlew clean check --stacktrace +./gradlew check EXIT_STATUS=0 echo "Publishing Docs For Branch $TRAVIS_BRANCH" if [[ $TRAVIS_BRANCH =~ ^master$ && $TRAVIS_PULL_REQUEST == 'false' ]]; then - cd ../ ./gradlew ascii || EXIT_STATUS=$? echo "Docs status: $EXIT_STATUS"