]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
gitlab: remove ability to skip 'ninja dist'
authorDaniel P. Berrangé <berrange@redhat.com>
Mon, 10 May 2021 17:03:00 +0000 (18:03 +0100)
committerDaniel P. Berrangé <berrange@redhat.com>
Wed, 12 May 2021 13:18:04 +0000 (14:18 +0100)
The "DIST=skip" flag as used in CentOS 7 jobs to workaround a problem
with older git versions. This is no longer required since

  commit d35003aee7d057e66d935cfd919ea86d5d450c4c
  Author: Andrea Bolognani <abologna@redhat.com>
  Date:   Tue May 4 10:45:29 2021 +0200

    ci: Drop CentOS 7

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
.gitlab-ci.yml

index cf0ce268b803e49d0d2acea6278bd18f01ce2fc5..a3b0e9ebba4d0d16fa166ab71686514810e28988 100644 (file)
@@ -61,13 +61,7 @@ stages:
     - *script_variables
   script:
     - meson build --werror || (cat build/meson-logs/meson-log.txt && exit 1)
-    - if test "$DIST" != "skip";
-      then
-        ninja -C build dist;
-      else
-        ninja -C build;
-        ninja -C build test;
-      fi
+    - ninja -C build dist;
     - if test -x /usr/bin/rpmbuild && test "$RPM" != "skip";
       then
         rpmbuild --nodeps -ta build/meson-dist/libvirt-*.tar.xz;