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.
This commit is contained in:
David Runge 2022-01-30 21:47:36 +01:00
parent 21ca345720
commit 549ce5bc4b
No known key found for this signature in database
GPG key ID: 7258734B41C31549

View file

@ -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