From 569e09f509a15ac26c93fefdc5acd5620cdd826a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 11 Oct 2019 20:25:48 +0000 Subject: [PATCH] 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 --- ci/build-check.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/build-check.sh b/ci/build-check.sh index bd0686bd..2b11b4d3 100755 --- a/ci/build-check.sh +++ b/ci/build-check.sh @@ -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 }