Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDavid Runge <dvzrv@archlinux.org>2022-01-30 21:47:36 +0100
committerDavid Runge <dvzrv@archlinux.org>2022-01-30 21:56:23 +0100
commit549ce5bc4bd2745de9156fb84d415d67b2d4d17f (patch)
tree807e82e2ef389ce6cc52a6757cfe13a8b1a86532 /.gitlab-ci.yml
parent21ca345720e0067f6b2817dd66e82029a52395e0 (diff)
Set all build steps to be interruptable
.gitlab-ci.yml: Set all build steps to be interruptable, so they will be interrupted if a newer commit is pushed on the same branch, which also triggers CI.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 89671f8..84ae892 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,6 +31,7 @@ check:
script:
- make check
stage: check
+ interruptible: true
build_short:
extends: .build
@@ -45,6 +46,7 @@ build_short:
- Makefile
- .gitlab-ci.yml
- .gitlab/ci/*
+ interruptible: true
build_long:
extends: .build
@@ -63,3 +65,4 @@ build_long:
- Makefile
- .gitlab-ci.yml
- .gitlab/ci/*
+ interruptible: true