[gnome-shell/wip/carlosg/ci-coverity: 1/2] ci: Funnel package list to be built correctly




commit 5fee643ad0ba755c97d0e18643162c64a61285fd
Author: Carlos Garnacho <carlosg gnome org>
Date:   Wed Jul 14 23:16:10 2021 +0200

    ci: Funnel package list to be built correctly
    
    It was on one hand using multi-line piping (`|`) and trying to
    compensate with \ to escape multiple lines, this lead to:
    
      No match for argument: \
    
    Also, the quoting around pkgconfig() arguments would lead to
    double quoting at the shell level, thus:
    
      No match for argument: 'pkgconfig(gio-2.0)'
    
    Fix both by using multi-line-turns-single-line piping (`>`)
    and dropping the unnecessary quotes.

 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2f09743335..7051dedc69 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -50,10 +50,10 @@ workflow:
         FDO_DISTRIBUTION_VERSION: 34
         FDO_DISTRIBUTION_TAG: '2021-07-07.1'
         FDO_UPSTREAM_REPO: GNOME/gnome-shell
-        FDO_DISTRIBUTION_PACKAGES: |
-            findutils mozjs78-devel nodejs npm meson \
-            'pkgconfig(gio-2.0)' 'pkgconfig(gio-unix-2.0)' \
-            'pkgconfig(gnome-autoar-0)' 'pkgconfig(json-glib-1.0)'
+        FDO_DISTRIBUTION_PACKAGES: >
+            findutils mozjs78-devel nodejs npm meson
+            pkgconfig(gio-2.0) pkgconfig(gio-unix-2.0)
+            pkgconfig(gnome-autoar-0) pkgconfig(json-glib-1.0)
         FDO_DISTRIBUTION_EXEC: |
             # For static analysis with eslint
             npm install -g eslint &&


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]