[CI:DOCS] Cirrus: Skip smoke task on branch-push
There is no need to re-run the same basic validation checks as were presumably already run on a PR before it merged. There are also possible problems properly determining `$EPOCH_TEST_COMMIT` when there have been no successful CI-runs on the branch (i.e. it's new). This needlessly fouls up the git-validation tool. Fix Both problems by just skipping the 'smoke' task for branches and tags. Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
parent
7d297ddbda
commit
dbb99433d5
|
@ -108,7 +108,7 @@ automation_task:
|
||||||
smoke_task:
|
smoke_task:
|
||||||
alias: 'smoke'
|
alias: 'smoke'
|
||||||
name: "Smoke Test"
|
name: "Smoke Test"
|
||||||
skip: *tags
|
skip: *branches_and_tags
|
||||||
container: &bigcontainer
|
container: &bigcontainer
|
||||||
image: ${CTR_FQIN}
|
image: ${CTR_FQIN}
|
||||||
# Leave some resources for smallcontainer
|
# Leave some resources for smallcontainer
|
||||||
|
|
Loading…
Reference in New Issue