diff options
author | Uli Schlachter <psychon@znc.in> | 2018-11-13 16:24:19 +0100 |
---|---|---|
committer | Federico Mena Quintero <federico@gnome.org> | 2019-03-12 10:09:10 -0600 |
commit | 216694183dfab69c321ddcc7b39ced9afac016d7 (patch) | |
tree | ee62829ffee646bbb3c593ebd11bc4c8c4b02e8b | |
parent | 0c25e1fdb612966a29763d40f95e49bc621d27b6 (diff) |
.gitlab-ci.yml: Do a verbose build
With VERBOSE=1, a lot more stuff is printed while make runs. Perhaps
most interestingly, this prints the output of a failed test after the
test failed. Thus, this gives us the output of the test suite.
Signed-off-by: Uli Schlachter <psychon@znc.in>
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2928eca44..96c219f29 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,7 +22,7 @@ stages: script: - ./autogen.sh - - make check TARGETS=image NUM_THREADS=8 + - make check TARGETS=image NUM_THREADS=8 VERBOSE=1 artifacts: when: on_failure |