Merge pull request #1942 from cgwalters/build-installdeps

ci: Skip all yum operations if SKIP_INSTALLDEPS is set
This commit is contained in:
OpenShift Merge Robot 2019-10-16 16:24:57 +02:00 committed by GitHub
commit f1eb3f4e61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,14 @@
set -xeuo pipefail
# This is used by our OpenShift Prow job; we use the
# cosa buildroot container
# https://github.com/coreos/coreos-assembler/pull/730
# And using `yum` at all means we can flake on fetching rpm metadata
if [ -n "${SKIP_INSTALLDEPS:-}" ]; then
exit 0
fi
dn=$(dirname $0)
. ${dn}/libpaprci/libbuild.sh