diff options
author | Chris Evich <cevich@redhat.com> | 2018-10-10 09:42:09 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2018-10-31 09:50:53 -0400 |
commit | 989affa2ddc5a3ba23342a9d70f975c3f8ad0519 (patch) | |
tree | e7578a194983d31b3dfa291267e903131c5636bc /.cirrus.yml | |
parent | cf4288e3cc1cd95e512cae063066ca26917e378e (diff) | |
download | podman-989affa2ddc5a3ba23342a9d70f975c3f8ad0519.tar.gz podman-989affa2ddc5a3ba23342a9d70f975c3f8ad0519.tar.bz2 podman-989affa2ddc5a3ba23342a9d70f975c3f8ad0519.zip |
Cirrus-CI: Add option to run system-tests
Normally, we would not run system-tests as part of PR-level CI, they're
simply too heavy-weight and complex. However, in some instances it may
be desirable to provide a quick feedback loop, prior to release packaging
and official testing. Enable this by executing the system-tests when
a magic string is present in the PR description:
``***CIRRUS: SYSTEM TEST***``
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index ae660394b..65aef4b2f 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -62,6 +62,8 @@ full_vm_testing_task: integration_test_script: $SCRIPT_BASE/integration_test.sh + optional_system_test_script: $SCRIPT_BASE/optional_system_test.sh + success_script: $SCRIPT_BASE/success.sh |