Skip to content
Snippets Groups Projects
Commit dae71938 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

Merge branch 'fix/go-test_job_failure_when_go_text_report_file_is_too' into 'master'

fix: go-test job failure when go_text_report file is too big

Closes #36

See merge request to-be-continuous/golang!67
parents e5af4331 66a4de0d
No related branches found
No related tags found
No related merge requests found
...@@ -404,7 +404,7 @@ stages: ...@@ -404,7 +404,7 @@ stages:
set -e set -e
# dump text report in the console # dump text report in the console
cat "$go_text_report" cat "$go_text_report" || (echo "Display of go test report file failed; Display of last 100 lines." && tail -n100 "$go_text_report")
# compute and dump code coverage in the console # compute and dump code coverage in the console
output_coverage output_coverage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment