15 lines
461 B
Bash
15 lines
461 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
# Using cut because TRAVIS_SCALA_VERSION is the full Scala
|
|
# version (for example 2.12.4), but Gradle expects just the
|
|
# binary version (for example 2.12)
|
|
scala_binary_version=$(echo $TRAVIS_SCALA_VERSION | cut -c1-4)
|
|
|
|
echo "+------------------------------+"
|
|
echo "| Executing tests using Gradle |"
|
|
echo "+------------------------------+"
|
|
./gradlew -Dscala.binary.version=$scala_binary_version check -i --stacktrace
|