diff options
| author | David Runge <dvzrv@archlinux.org> | 2022-01-30 21:47:36 +0100 |
|---|---|---|
| committer | David Runge <dvzrv@archlinux.org> | 2022-01-30 21:56:23 +0100 |
| commit | 549ce5bc4bd2745de9156fb84d415d67b2d4d17f (patch) | |
| tree | 807e82e2ef389ce6cc52a6757cfe13a8b1a86532 | |
| parent | 21ca345720e0067f6b2817dd66e82029a52395e0 (diff) | |
| download | archiso-549ce5bc4bd2745de9156fb84d415d67b2d4d17f.tar.gz archiso-549ce5bc4bd2745de9156fb84d415d67b2d4d17f.tar.bz2 | |
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.
| -rw-r--r-- | .gitlab-ci.yml | 3 |
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 |
