diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-26 17:11:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-26 17:11:12 +0200 |
commit | 67926d86b50973d6cb0d8e953583441c8cb2fecf (patch) | |
tree | 96cd0c416100c4373eedc6b843bb430b2fcbc180 /.cirrus.yml | |
parent | 6240bd41cbaae6b02c773a57dc05fc2eba0f8285 (diff) | |
parent | 04f2f95bb4ffae161ff0e7f01e381d6c7296fe14 (diff) | |
download | podman-67926d86b50973d6cb0d8e953583441c8cb2fecf.tar.gz podman-67926d86b50973d6cb0d8e953583441c8cb2fecf.tar.bz2 podman-67926d86b50973d6cb0d8e953583441c8cb2fecf.zip |
Merge pull request #3824 from baude/varlinkendpointtest
Create framework for varlink endpoint integration tests
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 80c954ca0..f034a5b37 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -502,6 +502,28 @@ special_testing_cgroupv2_task: always: <<: *standardlogs +special_testing_endpoint_task: + + depends_on: + - "gating" + - "varlink_api" + - "vendor" + + only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\*\*\*\s*CIRRUS:\s*TEST\s*IMAGES\s*\*\*\*.*' + + env: + SPECIALMODE: 'endpoint' # See docs + + timeout_in: 20m + + setup_environment_script: '$SCRIPT_BASE/setup_environment.sh |& ${TIMESTAMP}' + integration_test_script: '$SCRIPT_BASE/integration_test.sh |& ${TIMESTAMP}' + + on_failure: + failed_branch_script: '$CIRRUS_WORKING_DIR/$SCRIPT_BASE/notice_branch_failure.sh' + + always: + <<: *standardlogs # Test building of new cache-images for future PR testing, in this PR. test_build_cache_images_task: @@ -609,6 +631,7 @@ success_task: - "special_testing_in_podman" - "special_testing_cgroupv2" - "special_testing_cross" + - "special_testing_endpoint" - "test_build_cache_images" - "verify_test_built_images" @@ -649,6 +672,7 @@ release_task: - "special_testing_in_podman" - "special_testing_cgroupv2" - "special_testing_cross" + - "special_testing_endpoint" - "test_build_cache_images" - "verify_test_built_images" - "success" |