Skip to content

Commit a4ede10

Browse files
Setup multi project build
1 parent 6ebb8cf commit a4ede10

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include '3.3.x', '3.2.x'

travis-build.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
#!/bin/bash
22
set -e
3-
cd 3.2.x
4-
./gradlew clean check --stacktrace
5-
cd ../3.3.x
6-
./gradlew clean check --stacktrace
3+
./gradlew check
74

85
EXIT_STATUS=0
96

107
echo "Publishing Docs For Branch $TRAVIS_BRANCH"
118
if [[ $TRAVIS_BRANCH =~ ^master$ && $TRAVIS_PULL_REQUEST == 'false' ]]; then
129

13-
cd ../
1410
./gradlew ascii || EXIT_STATUS=$?
1511
echo "Docs status: $EXIT_STATUS"
1612

0 commit comments

Comments
 (0)