mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
Merge pull request #1942 from cgwalters/build-installdeps
ci: Skip all yum operations if SKIP_INSTALLDEPS is set
This commit is contained in:
commit
f1eb3f4e61
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user