[PATCH 0/1] MR9751: gitlab: Make core files accessible as artifacts.
All some days there is an issue with the `debian-32` gitlab job showing a segfault. But it also shows `core dumped`. This merge request is the attempt to make this core file available as artifact. Last segfault example from yesterday: https://gitlab.winehq.org/wine/wine/-/jobs/216539#L135 ``` /usr/bin/bash: line 213: 185 Segmentation fault (core dumped) wine usr/local/lib/wine/i386-windows/winetest.exe -q ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9751
From: Bernhard Übelacker <bernhardu@mailbox.org> --- tools/gitlab/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/gitlab/test.yml b/tools/gitlab/test.yml index e10ecd57026..888d4b9efb7 100644 --- a/tools/gitlab/test.yml +++ b/tools/gitlab/test.yml @@ -157,6 +157,10 @@ debian-32: - if: $CI_PIPELINE_SOURCE == 'trigger' && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH needs: - job: build-daily-linux + artifacts: + when: always + paths: + - "*core*" script: - wine usr/local/lib/wine/i386-windows/winetest.exe -q @@ -171,6 +175,10 @@ debian-64: - if: $CI_PIPELINE_SOURCE == 'trigger' && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH needs: - job: build-daily-linux + artifacts: + when: always + paths: + - "*core*" script: - wine usr/local/lib/wine/x86_64-windows/winetest.exe -q -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9751
Sorry, a missing core file makes the job fail - that is not what I wanted at all. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9751#note_125409
participants (2)
-
Bernhard Übelacker -
Bernhard Übelacker (@bernhardu)