ci/installdeps.sh: Pull ostree from rdgo on f30 too
This is a bit of a hack, but does the trick now. Eventually, we'll need to either bump rdgo to f30, or set up continuous builds some other way (e.g. Packit or Jenkins pipelines). Closes: #1900 Approved by: cgwalters
This commit is contained in:
parent
bc50cacde3
commit
e589161c56
@ -6,10 +6,11 @@ set -xeuo pipefail
|
||||
dn=$(dirname $0)
|
||||
. ${dn}/libbuild.sh
|
||||
|
||||
# Use the latest ostree by default
|
||||
# Use the latest ostree by default (XXX: currently pulling in f29 ostree, need
|
||||
# to bump rdgo to f30 or wait for packit)
|
||||
id=$(. /etc/os-release && echo $ID)
|
||||
version_id=$(. /etc/os-release && echo $VERSION_ID)
|
||||
if [ "$id" == fedora ] && [ "$version_id" == 29 ]; then
|
||||
if [ "$id" == fedora ] && [ "$version_id" -ge 29 ]; then
|
||||
echo -e '[fahc]\nmetadata_expire=1m\nbaseurl=https://ci.centos.org/artifacts/sig-atomic/fahc/rdgo/build/\ngpgcheck=0\n' > /etc/yum.repos.d/fahc.repo
|
||||
# Until we fix https://github.com/rpm-software-management/libdnf/pull/149
|
||||
excludes='exclude=ostree ostree-libs ostree-grub2 rpm-ostree'
|
||||
|
Loading…
Reference in New Issue
Block a user