diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-06-01 11:51:54 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-01 20:39:15 +0000 |
commit | c2e3058b3b35695a134b1dfdb4167632a3c767cf (patch) | |
tree | 711cea1a638aa3404b0ab7c3bd4efabc246f9d34 /.papr_prepare.sh | |
parent | 727ecfeadf09edef520513513be78d7d93221a3b (diff) | |
download | podman-c2e3058b3b35695a134b1dfdb4167632a3c767cf.tar.gz podman-c2e3058b3b35695a134b1dfdb4167632a3c767cf.tar.bz2 podman-c2e3058b3b35695a134b1dfdb4167632a3c767cf.zip |
Log podman build failures in papr
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #875
Approved by: mheon
Diffstat (limited to '.papr_prepare.sh')
-rw-r--r-- | .papr_prepare.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.papr_prepare.sh b/.papr_prepare.sh index 6fa8eb84d..24f55c5b1 100644 --- a/.papr_prepare.sh +++ b/.papr_prepare.sh @@ -11,7 +11,7 @@ if [[ ${DIST} != "Fedora" ]]; then fi # Build the test image -${CONTAINER_RUNTIME} build -t ${IMAGE} -f Dockerfile.${DIST} . +${CONTAINER_RUNTIME} build -t ${IMAGE} -f Dockerfile.${DIST} . 2>build.log # Run the tests ${CONTAINER_RUNTIME} run --rm --privileged --net=host -v $PWD:/go/src/github.com/projectatomic/libpod --workdir /go/src/github.com/projectatomic/libpod -e PYTHON=$PYTHON -e STORAGE_OPTIONS="--storage-driver=vfs" -e CRIO_ROOT="/go/src/github.com/projectatomic/libpod" -e PODMAN_BINARY="/usr/bin/podman" -e CONMON_BINARY="/usr/libexec/crio/conmon" -e DIST=$DIST $IMAGE sh .papr.sh |