I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit 139594df authored by idk's avatar idk
Browse files

Move travis test runner script to own file so it's easier to work with

parent 659ab97f
No related branches found
No related tags found
No related merge requests found
...@@ -28,12 +28,7 @@ env: ...@@ -28,12 +28,7 @@ env:
- SONAR_SCANNER_OPTS="-Xmx2048m" - SONAR_SCANNER_OPTS="-Xmx2048m"
script: script:
- | - travis_wait 45 ./tests/scripts/travis.sh
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk11" ]; then
./gradlew sonarqube codeCoverageReport -Dsonar.verbose=true
else
./gradlew check codeCoverageReport
fi
after_success: after_success:
- bash <(curl -s https://codecov.io/bash) - bash <(curl -s https://codecov.io/bash)
......
#! /bin/sh
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk11" ]; then
./gradlew sonarqube codeCoverageReport -Dsonar.verbose=true
else
./gradlew check codeCoverageReport
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment