diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2018-11-29 15:11:43 +0100 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2018-11-29 16:24:18 +0100 |
commit | 285ebfb3b7adc56586031afa5150c4e5ad40c229 (patch) | |
tree | 94de389687b83f87f8c85d0918bdd988b12e638d /.gitlab-ci.yml | |
parent | b05c028ccdb6ac8e8d8499a041bb14dfe358ee26 (diff) |
gitlab-CI: Keep build artifacts when arm64-test fails
There's something very funky going on with the occasional commit
consistently failing, e.g.
https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/jobs/51208
We need to catch it to understand what happens.
v2: Also dump the environment (Petri)
Cc: Petri Latvala <petri.latvala@intel.com>
Acked-by: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d09eca30..5cbb4287 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -91,7 +91,13 @@ test:ninja-test-arm64: dependencies: - build:tests-debian-meson-arm64 stage: test - script: ninja -C build test + script: + - env > build/envdump.txt + - ninja -C build test + artifacts: + paths: + - build + when: on_failure test:test-list-diff: dependencies: |