diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-12 06:50:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 06:50:25 -0500 |
commit | a226e6ed318ae7b7af16081b787cc80718e73e2d (patch) | |
tree | 10844987dfb718524235b497add7bcdaa09e4ece /contrib | |
parent | 36bec385f33ebc8f0aeb52547f79bd2663521f8f (diff) | |
parent | cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5 (diff) | |
download | podman-a226e6ed318ae7b7af16081b787cc80718e73e2d.tar.gz podman-a226e6ed318ae7b7af16081b787cc80718e73e2d.tar.bz2 podman-a226e6ed318ae7b7af16081b787cc80718e73e2d.zip |
Merge pull request #8553 from baude/composeci
add compose regression to ci
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) ;& |