diff options
| author | Vincent Laporte | 2019-01-29 08:55:20 +0000 |
|---|---|---|
| committer | Vincent Laporte | 2019-01-29 08:55:20 +0000 |
| commit | 1f3536e89b7235aaa0007e8ab7298040407df8ba (patch) | |
| tree | 81917018e39ecd4750ba8d0e77c01dd3fc678281 /test-suite | |
| parent | 10253b1e744e8075b708a9fe328f49c06bbc3fef (diff) | |
| parent | 95d977bf0b1825b7d822abbdd062cdb8c38051cb (diff) | |
Merge PR #9383: Remove travis
Reviewed-by: Zimmi48
Reviewed-by: vbgl
Diffstat (limited to 'test-suite')
| -rwxr-xr-x | test-suite/report.sh | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/test-suite/report.sh b/test-suite/report.sh index cef615266b..71aac029ea 100755 --- a/test-suite/report.sh +++ b/test-suite/report.sh @@ -24,21 +24,11 @@ cp summary.log "$SAVEDIR"/ rm "$FAILED" # print info -if [ -n "$TRAVIS" ] || [ -n "$APPVEYOR" ] || [ -n "$PRINT_LOGS" ]; then +if [ -n "$APPVEYOR" ] || [ -n "$PRINT_LOGS" ]; then find logs/ -name '*.log' -not -name 'summary.log' -print0 | while IFS= read -r -d '' file; do - if [ -n "$TRAVIS" ]; then - # ${foo////.} replaces every / by . in $foo - printf 'travis_fold:start:coq.logs.%s\n' "${file////.}"; - else printf '%s\n' "$file" - fi - + printf '%s\n' "$file" cat "$file" - - if [ -n "$TRAVIS" ]; then - # ${foo////.} replaces every / by . in $foo - printf 'travis_fold:end:coq.logs.%s\n' "${file////.}"; - else printf '\n' - fi + printf '\n' done printed_logs=1 fi |
