diff options
author | Ed Santiago <santiago@redhat.com> | 2022-01-24 09:58:34 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2022-01-24 15:09:48 -0700 |
commit | 7cdb00a4592b0283088382997c063a1e93305efc (patch) | |
tree | ee19fc752d69216a49201a9ffc03081856084716 /.cirrus.yml | |
parent | 6d8507d06bd8f1dbe91a688393e6fbd2b3382f23 (diff) | |
download | podman-7cdb00a4592b0283088382997c063a1e93305efc.tar.gz podman-7cdb00a4592b0283088382997c063a1e93305efc.tar.bz2 podman-7cdb00a4592b0283088382997c063a1e93305efc.zip |
CI: enable rootless-remote system tests
Minimal: only test Fedora.Latest.
Reason: podman 4.0.0-0.2.rc2 broke bodhi gating tests:
https://github.com/containers/podman/issues/12989
Requires skipping two recently-added tests that use 'podman unshare',
which doesn't work on remote.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index c33ed9c0c..1bbd41b22 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -561,6 +561,26 @@ remote_system_test_task: TEST_FLAVOR: sys PODBIN_NAME: remote +rootless_remote_system_test_task: + <<: *local_system_test_task + alias: rootless_remote_system_test + depends_on: + - remote_integration_test + matrix: + # Minimal sanity testing: only the latest Fedora + - env: + DISTRO_NV: ${FEDORA_NAME} + # Not used here, is used in other tasks + VM_IMAGE_NAME: ${FEDORA_CACHE_IMAGE_NAME} + CTR_FQIN: ${FEDORA_CONTAINER_FQIN} + # ID for re-use of build output + _BUILD_CACHE_HANDLE: ${FEDORA_NAME}-build-${CIRRUS_BUILD_ID} + gce_instance: *standardvm + env: + TEST_FLAVOR: sys + PODBIN_NAME: remote + PRIV_NAME: rootless + buildah_bud_test_task: name: *std_name_fmt alias: buildah_bud_test @@ -716,6 +736,7 @@ success_task: - local_system_test - remote_system_test - rootless_system_test + - rootless_remote_system_test - rootless_gitlab_test - upgrade_test - buildah_bud_test |