Skip to content
Merged
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 @@ -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
Copy link
Contributor

@smarterclayton smarterclayton Aug 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer you fix this by adding ARTIFACT_DIR to the env, so that we remained consistent across jobs.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the follow-up: #11313


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
}

Expand Down