ci: Honor ARTIFACTS environment variable

This is set by the OpenShift Prow pod-utils:
https://github.com/openshift/test-infra/blob/master/prow/pod-utilities.md

Prep for having OSTree use that.

Closes: #1930
Approved by: jlebon
This commit is contained in:
Colin Walters 2019-10-11 20:25:48 +00:00 committed by Atomic Bot
parent 985a141002
commit 569e09f509
1 changed files with 3 additions and 1 deletions

View File

@ -35,9 +35,11 @@ fi
copy_out_gdtr_artifacts() {
# Keep this in sync with papr.yml
# TODO; Split the main/clang builds into separate build dirs
local artifactdir
artifactdir=${ARTIFACTS:-${topdir}}
for x in test-suite.log config.log gdtr-results; do
if test -e ${resultsdir}/${x}; then
mv ${resultsdir}/${x} ${topdir}
mv ${resultsdir}/${x} ${artifactdir}
fi
done
}