summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois Cami <fcami@redhat.com>2019-07-03 23:29:24 +0200
committerFrançois Cami <fcami@redhat.com>2019-07-08 17:30:24 +0200
commitbe7f54d40c33d147fdaf0d3cd65b56452a4f001a (patch)
tree199cc4a27f4457c2bb89bc937c4203971cf023d7
parent4740655260caa7baee4473b0d35840a4c0da3dac (diff)
downloadfreeipa-be7f54d40c33d147fdaf0d3cd65b56452a4f001a.tar.gz
freeipa-be7f54d40c33d147fdaf0d3cd65b56452a4f001a.tar.xz
freeipa-be7f54d40c33d147fdaf0d3cd65b56452a4f001a.zip
ipatests/azure: display actual dnf repo URLs
Display which dnf repositories were available at the prepare-build step via metalink. Also display the fastestmirror cache. Signed-off-by: François Cami <fcami@redhat.com> Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
-rw-r--r--ipatests/azure/templates/prepare-build.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipatests/azure/templates/prepare-build.yml b/ipatests/azure/templates/prepare-build.yml
index 479d3bebb..93fc8a273 100644
--- a/ipatests/azure/templates/prepare-build.yml
+++ b/ipatests/azure/templates/prepare-build.yml
@@ -11,6 +11,10 @@ steps:
EOF
echo 'Disable modular repositories'
sudo dnf config-manager '*modular*' --set-disabled
+ echo "Fedora mirror metalink content:"
+ for metalink in $(sudo dnf repolist -v |grep Repo-metalink | awk '{print $2}' ) ; do echo '###############' ; echo '####' ; echo $metalink ; echo '####' ; curl $metalink ; done
+ echo "Fastestmirror results:"
+ sudo cat /var/cache/dnf/fastestmirror.cache
sudo dnf makecache || :
echo "Installing base development environment"
sudo dnf install -y gdb make autoconf rpm-build gettext-devel automake libtool 'nodejs(abi) < 11' docker python3-paramiko || :