From 6192d8c71a4c8ccf040cb3140e05910dbd883193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire?= <gregoire.kubler@proton.me> Date: Thu, 21 Nov 2024 11:21:22 +0100 Subject: [PATCH] fix : deploy job is allowed to fail This exist for 2 reasons : - random tests can lead to random unit tests failure - the following line causes random failure on windows build jobs : https://gitlab.eclipse.org/eclipse/aidge/gitlab_shared_files/-/blob/main/.gitlab/ci/download/download.gitlab-ci.yml?ref_type=heads#L162 --- .gitlab/ci/rules.gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab/ci/rules.gitlab-ci.yml b/.gitlab/ci/rules.gitlab-ci.yml index 4840c06..a1d1de9 100644 --- a/.gitlab/ci/rules.gitlab-ci.yml +++ b/.gitlab/ci/rules.gitlab-ci.yml @@ -42,5 +42,5 @@ .rules:deploy: rules: - if: $CI_COMMIT_TAG - allow_failure: false + allow_failure: true when: on_success -- GitLab