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 | |
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')
-rwxr-xr-x | contrib/cirrus/runner.sh | 4 | ||||
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 1 |
2 files changed, 5 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 } diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index c32b45a4f..a3c0f9a13 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -195,6 +195,7 @@ case "$TEST_FLAVOR" in build) make clean ;; unit) ;; apiv2) ;& # use next item + compose) ;& int) ;& sys) ;& bindings) ;& |