Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ presubmits:
cluster: api.ci
context: ci/prow/gcp-major-upgrade
decorate: true
labels:
pj-rehearse.openshift.io/can-be-rehearsed: "true"
name: pull-ci-openshift-openshift-ansible-310-gcp-major-upgrade
rerun_command: /test gcp-major-upgrade
spec:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ presubmits:
cluster: api.ci
context: ci/prow/gcp-major-upgrade
decorate: true
labels:
pj-rehearse.openshift.io/can-be-rehearsed: "true"
name: pull-ci-openshift-openshift-ansible-3.11-gcp-major-upgrade
optional: true
rerun_command: /test gcp-major-upgrade
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,11 @@ objects:

function run-tests() {
if which openshift-tests && [[ -n "${TEST_SUITE-}" ]]; then
openshift-tests run-resourcewatch &
rw_pid=$!
openshift-tests run "${TEST_SUITE}" --provider "${TEST_PROVIDER:-}" -o /tmp/artifacts/e2e.log --junit-dir /tmp/artifacts/junit
kill $rw_pid
tar -cf ${ARTIFACT_DIR}/rw.tar /repository
return 0
fi
# TODO: remove everything after this point once we fork templates by release - starting with 4.0
Expand Down