From 8242e69026f3268bc184aff715dbb51b0f9d55cb Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 14 Sep 2020 14:14:02 -0400 Subject: [PATCH] ci: archive rpmdb listing for easier debugging Then we can diff the rpmdb from two CI runs to help debug issues. That's more or less what I did to investigate #1723, but this should make it trivial. --- .cci.jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index 77c9b11d19..49464ebc67 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -8,7 +8,9 @@ pod(image: 'registry.fedoraproject.org/fedora:32', runAsUser: 0, kvm: true, memo dnf install -y git git submodule update --init ./build.sh + rpm -qa | sort > rpmdb.txt """) + archiveArtifacts artifacts: 'rpmdb.txt' } stage("Unit Test") {