-
-
Save kpmeen/9699f41ac65eb0799ef7ccd2fdb6e1c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
set -euo pipefail | |
unset SBT_OPTS JVM_OPTS JDK_HOME JAVA_HOME | |
: ${TRAVIS_SCALA_VERSION:=2.11.8} | |
: ${SBT_TARGET:=$*} | |
: ${SBT_TARGET:=test} | |
ANSI_CLEAR="\033[0K" | |
start_regex='\[info\][[:space:]]*([[:alnum:]]+Spec)$' | |
end_regex='\[info\][[:space:]]*Total for specification ([[:alnum:]]+Spec)$' | |
ignore_regex='\[info\][[:space:]]+(Resolving|Loading|Done|Attempting|Formatting|Updating)' | |
travis_fold() { | |
local action="$1" | |
local name="$2" | |
echo -en "travis_fold:${action}:${name}\r${ANSI_CLEAR}" | |
} | |
inject_folds () { | |
while read -r line; do | |
[[ "$line" =~ $start_regex ]] && travis_fold start "${BASH_REMATCH[1]}" | |
[[ "$line" =~ $ignore_regex ]] || printf "%s\n" "$line" | |
[[ "$line" =~ $end_regex ]] && travis_fold end "${BASH_REMATCH[1]}" | |
done | |
} | |
./sbt ++$TRAVIS_SCALA_VERSION -no-colors -batch -v "$SBT_TARGET" | inject_folds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment