From dc387e1dc595fdc55ba27bac874c66ad6837604d Mon Sep 17 00:00:00 2001 From: Sally O'Malley Date: Wed, 26 Aug 2020 14:26:42 -0400 Subject: [PATCH] libvirt-template: Expand ARTIFACT_DIR env var to gcp instance --- .../installer/cluster-launch-installer-libvirt-e2e.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }