Navigation Menu

Skip to content

Commit

Permalink
fixed travis package task
Browse files Browse the repository at this point in the history
  • Loading branch information
coutoPL committed Aug 20, 2019
1 parent 49c394a commit 0006cff
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -54,7 +54,9 @@ env:
- ROR_TASK="integration_es52x_scala"
- ROR_TASK="integration_es51x"
- ROR_TASK="integration_es51x_scala"
- ROR_TASK="package"
- ROR_TASK="package_es7xx"
- ROR_TASK="package_es6xx"
- ROR_TASK="package_es5xx"

before_script:
- sudo sysctl -w vm.max_map_count=262144
Expand Down
14 changes: 13 additions & 1 deletion bin/build.sh
Expand Up @@ -123,7 +123,7 @@ if [[ $TRAVIS_PULL_REQUEST == "true" ]] && [[ $TRAVIS_BRANCH != "master" ]]; the
exit 0
fi

if [[ $TRAVIS != "true" ]] || [[ $ROR_TASK == "package" ]]; then
if [[ $TRAVIS != "true" ]] || [[ $ROR_TASK == "package_es7xx" ]]; then

echo ">>> ($0) additional builds of ES module for specified ES version"

Expand All @@ -139,6 +139,12 @@ if [[ $TRAVIS != "true" ]] || [[ $ROR_TASK == "package" ]]; then
./gradlew --stacktrace es70x:ror '-PesVersion=7.2.1'
./gradlew --stacktrace es73x:ror '-PesVersion=7.3.0'

fi

if [[ $TRAVIS != "true" ]] || [[ $ROR_TASK == "package_es6xx" ]]; then

echo ">>> ($0) additional builds of ES module for specified ES version"

# es66
./gradlew --stacktrace es66x:ror '-PesVersion=6.6.0'
./gradlew --stacktrace es66x:ror '-PesVersion=6.6.1'
Expand Down Expand Up @@ -184,6 +190,12 @@ if [[ $TRAVIS != "true" ]] || [[ $ROR_TASK == "package" ]]; then
./gradlew --stacktrace es60x:ror '-PesVersion=6.0.0'
#./gradlew --stacktrace es60x:ror '-PesVersion=6.0.1'

fi

if [[ $TRAVIS != "true" ]] || [[ $ROR_TASK == "package_es5xx" ]]; then

echo ">>> ($0) additional builds of ES module for specified ES version"

# es55
./gradlew --stacktrace es55x:ror '-PesVersion=5.6.0'
./gradlew --stacktrace es55x:ror '-PesVersion=5.6.1'
Expand Down

0 comments on commit 0006cff

Please sign in to comment.