From 1513d4c8b62f4516012da61c323ac02a023db5b7 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Mon, 8 Aug 2022 13:54:13 +0900 Subject: .gitlab-ci.yml: mark all CI jobs interruptible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows previous pipelines to be cancelled if a new job is submitted subsequently: https://docs.gitlab.com/ee/ci/yaml/#interruptible Suggested-by: Zoltán Fridrich Signed-off-by: Daiki Ueno --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38f551ef6c..2552774728 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -50,6 +50,8 @@ default: - *prepare-ccache - ccache -s + interruptible: true + .bootstrap: stage: bootstrap tags: -- cgit v1.2.1