Skip to content
Snippets Groups Projects
Commit 96dbd036 authored by Dan Villiom Podlaski Christiansen's avatar Dan Villiom Podlaski Christiansen
Browse files

ci: make errors with default and stable fail scheduled builds

This will trigger a nice failure notification.
parent cc4f3340
No related branches found
No related tags found
2 merge requests!99compat: add support for mercurial 5.8 & default,!98ci: make errors with default and stable fail scheduled builds
Pipeline #21813 passed with warnings
......@@ -98,7 +98,15 @@
Development:
extends: .base
stage: upcoming
allow_failure: true
rules:
# we don't want to prevent merging unrelated work, so allow
# failures for normal builds
- if: '$CI_PIPELINE_SOURCE != "schedule"'
allow_failure: true
# but disallow them for scheduled builds, so we get a nice
# notification
- if: '$CI_PIPELINE_SOURCE == "schedule"'
allow_failure: false
parallel:
matrix:
- PYTHON:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment