summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-18 05:58:21 -0400
committerGitHub <noreply@github.com>2020-04-18 05:58:21 -0400
commit3b461ed6eb85f329ad163a4f18df3b872fe86f04 (patch)
treedbce70630d71af5da73f1491ba05104f32c68865 /.cirrus.yml
parentaa97cb5f42a35de02d520f6c3006600505a3d6d9 (diff)
parentc2a1138aecc2a0b3f60e3a61c0dfe18de3a47684 (diff)
downloadpodman-3b461ed6eb85f329ad163a4f18df3b872fe86f04.tar.gz
podman-3b461ed6eb85f329ad163a4f18df3b872fe86f04.tar.bz2
podman-3b461ed6eb85f329ad163a4f18df3b872fe86f04.zip
Merge pull request #5871 from baude/v2t3
enable integration testing
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index e96994cfe..016ef8f2b 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -453,6 +453,49 @@ testing_task:
path: "*.log.html"
type: "text/html"
+# This task only temporary as we creep up on making
+# all tests passing for v2. Once all tests pass, we
+# should immediately remove this and re-enable the
+# testing matrix.
+integration_test_temporary_task:
+
+ allow_failures: $CI == 'true'
+
+ depends_on:
+ - "gating"
+ - "varlink_api"
+ - "vendor"
+ - "build_each_commit"
+ - "build_without_cgo"
+
+ only_if: >-
+ $CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
+ $CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
+
+ env:
+ ADD_SECOND_PARTITION: 'true'
+ TEST_REMOTE_CLIENT: 'false'
+
+ timeout_in: 60m
+
+ networking_script: '${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/networking.sh'
+ setup_environment_script: '$SCRIPT_BASE/setup_environment.sh |& ${TIMESTAMP}'
+ integration_test_script: '$SCRIPT_BASE/integration_test.sh |& ${TIMESTAMP} | ${LOGFORMAT} integration_test'
+
+ on_failure:
+ failed_branch_script: '$CIRRUS_WORKING_DIR/$SCRIPT_BASE/notice_branch_failure.sh'
+
+ always:
+ package_versions_script: '$SCRIPT_BASE/logcollector.sh packages'
+ ginkgo_node_logs_script: '$SCRIPT_BASE/logcollector.sh ginkgo'
+ df_script: '$SCRIPT_BASE/logcollector.sh df'
+ audit_log_script: '$SCRIPT_BASE/logcollector.sh audit'
+ journal_script: '$SCRIPT_BASE/logcollector.sh journal'
+ varlink_script: '$SCRIPT_BASE/logcollector.sh varlink'
+ podman_system_info_script: '$SCRIPT_BASE/logcollector.sh podman'
+ html_artifacts:
+ path: "*.log.html"
+ type: "text/html"
# This task executes tests under unique environments/conditions
special_testing_rootless_task:
@@ -798,6 +841,8 @@ success_task:
- "test_build_cache_images"
- "verify_test_built_images"
- "docs"
+ # FIXME remove when all v2 tests pass
+ - "integration_test_temporary"
env:
CIRRUS_WORKING_DIR: "/usr/src/libpod"