diff --git a/ci-operator/templates/openshift/installer/cluster-launch-installer-libvirt-e2e.yaml b/ci-operator/templates/openshift/installer/cluster-launch-installer-libvirt-e2e.yaml index 4f2501ead96d0..94c40f512897f 100644 --- a/ci-operator/templates/openshift/installer/cluster-launch-installer-libvirt-e2e.yaml +++ b/ci-operator/templates/openshift/installer/cluster-launch-installer-libvirt-e2e.yaml @@ -205,11 +205,11 @@ objects: #!/bin/bash set -euo pipefail export PATH=/home/packer:$PATH - mkdir -p ${ARTIFACT_DIR}/junit + mkdir -p /tmp/artifacts/junit function run-tests() { openshift-tests run "${TEST_SUITE}" \ - -o ${ARTIFACT_DIR}/e2e.log --junit-dir ${ARTIFACT_DIR}/junit + -o /tmp/artifacts/e2e.log --junit-dir /tmp/artifacts/junit return 0 }