diff options
author | Matthew Heon <mheon@redhat.com> | 2022-03-17 14:15:32 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-03-17 14:29:48 -0400 |
commit | bde3ca8c363bfbd0f50fe9c787960836212e0167 (patch) | |
tree | f772f8120f469b849d521ca5f67e8f6408dcd587 /.cirrus.yml | |
parent | 0793a58343a49b2ed30d3da2d10dd5f14cc13f1a (diff) | |
download | podman-bde3ca8c363bfbd0f50fe9c787960836212e0167.tar.gz podman-bde3ca8c363bfbd0f50fe9c787960836212e0167.tar.bz2 podman-bde3ca8c363bfbd0f50fe9c787960836212e0167.zip |
Add tests with Docker Compose v2
Add a pair of new Cirrus test suites using Compose v2 instead of
Compose v1 (as is currently packaged in Fedora). They work
identically, and run the same tests, as the Compose v1 tests, but
with the new v2 binary instead.
[NO NEW TESTS NEEDED] This adds an entire Cirrus suite...
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 7e523c4ae..0752901ab 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -429,7 +429,7 @@ apiv2_test_task: compose_test_task: - name: "compose test on $DISTRO_NV ($PRIV_NAME)" + name: "$TEST_FLAVOR test on $DISTRO_NV ($PRIV_NAME)" alias: compose_test only_if: *not_build skip: *tags @@ -438,11 +438,18 @@ compose_test_task: gce_instance: *standardvm env: <<: *stdenvars - TEST_FLAVOR: compose matrix: - env: + TEST_FLAVOR: compose PRIV_NAME: root - env: + TEST_FLAVOR: compose + PRIV_NAME: rootless + - env: + TEST_FLAVOR: compose_v2 + PRIV_NAME: root + - env: + TEST_FLAVOR: compose_v2 PRIV_NAME: rootless clone_script: *noop # Comes from cache gopath_cache: *ro_gopath_cache |