Last active
August 29, 2015 14:05
-
-
Save nlochschmidt/5df1a5398262e0aec815 to your computer and use it in GitHub Desktop.
Filter output from sbt to reduce length of CI build log
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 | |
# Licensed under the Apache License, Version 2.0 | |
# Adapted from https://github.com/paulp/psp-std/blob/master/bin/test | |
runTests () { | |
sbt test || exit 1 | |
echo "[info] $(date) - finished sbt test" | |
} | |
stripTerminalEscapeCodes () { | |
sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGKM]//g" | |
} | |
mkRegex () { ( IFS="|" && echo "$*" ); } | |
filterOutput() { | |
while read line; do | |
if ! [[ $(echo $line | stripTerminalEscapeCodes) =~ $excludeRegex ]] ; then | |
echo $line | |
fi | |
done | |
} | |
main() { | |
# sbt output filter | |
local excludeRegex=$(mkRegex \ | |
'\[info\] (Resolving|Loading|Updating|Packaging|Done updating)' \ | |
're[-]run with [-]unchecked for details' \ | |
'one warning found' | |
) | |
echo "[info] $(date) - starting sbt test" | |
(set -o pipefail && runTests |& filterOutput) | |
} | |
main $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment