ci: delete obsolete files and move scripts/ci-lite/ to scripts/ci/

This commit is contained in:
Igor Minar
2017-03-05 01:32:09 -08:00
committed by Igor Minar
parent a24e652f2b
commit 91fe3aadbc
34 changed files with 5 additions and 515 deletions

21
scripts/ci/print-logs.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
set -u -e -o pipefail
# override test failure so that we perform this file regardless and not abort in env.sh
TRAVIS_TEST_RESULT=0
# Setup environment
source ${TRAVIS_BUILD_DIR}/scripts/ci-lite/_travis_fold.sh
source ${TRAVIS_BUILD_DIR}/scripts/ci-lite/env.sh
for FILE in ${LOGS_DIR}/*; do
travisFoldStart "print log file: ${FILE}"
cat $FILE
travisFoldEnd "print log file: ${FILE}"
done
# Print return arrows as a log separator
travisFoldReturnArrows