From 34646bc0ab63383385527f62e438690d10206d16 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Fri, 14 Jan 2022 17:40:55 +0100 Subject: [PATCH] allow RPM build failure until we can fix it The current building issue is a docker issue unrelated to Spot, so it should not prevent us from doing a release. * .gitlab-ci.yml (rpm-pkg): Allow failure. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0abb1c6cb..583774da0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -330,6 +330,7 @@ rpm-pkg: - cp spot.spec ~/rpmbuild/SPECS/ - rpmbuild -bb ~/rpmbuild/SPECS/spot.spec - mv ~/rpmbuild/RPMS/x86_64/*.rpm . + allow_failure: true artifacts: when: always expire_in: 1 week