diff options
author | Chris Evich <cevich@redhat.com> | 2021-01-20 14:57:24 -0500 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2021-01-20 15:02:07 -0500 |
commit | 4c605238c707ccbb3b0a4b98840056a3bef52f6b (patch) | |
tree | 2fa75091fcf05b32fd4b2f7546f48e153abd58a6 /.cirrus.yml | |
parent | 4ecd2be083ec973855e623bdc1290492e18672ac (diff) | |
download | podman-4c605238c707ccbb3b0a4b98840056a3bef52f6b.tar.gz podman-4c605238c707ccbb3b0a4b98840056a3bef52f6b.tar.bz2 podman-4c605238c707ccbb3b0a4b98840056a3bef52f6b.zip |
[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>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 50233562c..0abb71146 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -108,7 +108,7 @@ automation_task: smoke_task: alias: 'smoke' name: "Smoke Test" - skip: *tags + skip: *branches_and_tags container: &bigcontainer image: ${CTR_FQIN} # Leave some resources for smallcontainer |