diff options
author | baude <bbaude@redhat.com> | 2020-12-02 08:45:08 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2020-12-11 09:26:29 -0600 |
commit | 82d7b9f2e21c93cfb12c8f199284c38f3e858280 (patch) | |
tree | 36eefabbfce3167093c9a49ea20e9050a70cb483 /contrib/cirrus/runner.sh | |
parent | 47af0afbd15b074561d98a117be353301a354e85 (diff) | |
download | podman-82d7b9f2e21c93cfb12c8f199284c38f3e858280.tar.gz podman-82d7b9f2e21c93cfb12c8f199284c38f3e858280.tar.bz2 podman-82d7b9f2e21c93cfb12c8f199284c38f3e858280.zip |
add compose regression to ci
to prevent any regressions, we should be running regression tests using
compose.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'contrib/cirrus/runner.sh')
-rwxr-xr-x | contrib/cirrus/runner.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh index fa921f3e4..cc6d155f9 100755 --- a/contrib/cirrus/runner.sh +++ b/contrib/cirrus/runner.sh @@ -73,6 +73,10 @@ function _run_apiv2() { make localapiv2 |& logformatter } +function _run_compose() { + ./test/compose/test-compose |& logformatter +} + function _run_int() { dotest integration } |