From 8703faf345474c257221577d5785019a24aa0051 Mon Sep 17 00:00:00 2001 From: Romain LE JEUNE Date: Mon, 18 Dec 2023 09:42:48 +0100 Subject: [PATCH] chore: set log as artefact for all integration test. --- ci/test.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/ci/test.yml b/ci/test.yml index ed5d2ecc..5b8e055b 100644 --- a/ci/test.yml +++ b/ci/test.yml @@ -55,14 +55,23 @@ test-integration: extends: - test-linux script: - - make test-integration + - make test-integration | tee -a integration-job.log + artifacts: + when: always + paths: + - integration-job.log test-integration-race: extends: - test-integration - .rules-branch-and-MR-manual script: - - make test-integration-race + - make test-integration-race | tee -a integration-race-job.log + artifacts: + when: always + paths: + - integration-race-job.log + test-integration-nightly: extends: