[libwnck/wip/marco/meson-build] Testzzz



commit 0feb42e4639cde630fcc07cd6a0a5f0ed5c90caf
Author: Marco Trevisan (TreviƱo) <mail 3v1n0 net>
Date:   Tue Nov 6 20:08:33 2018 -0600

    Testzzz

 .gitlab-ci.yml | 29 +++++++++++++++++------------
 1 file changed, 17 insertions(+), 12 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0818b90..f2aaac7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,14 +1,13 @@
 stages:
   - build
 
-.before_script_template: &ubuntu_before_script
+.base_build_template: &base_build
+  stage: build
   image: ubuntu:devel
-  before_script:
-    - apt-get update
-    - apt-get install -q -y --no-install-recommends
-                      autoconf-archive
-                      automake
-                      autopoint
+
+.ubuntu_deps_install_template: &ubuntu_deps_install
+    apt-get update &&
+    apt-get install -q -y --no-install-recommends
                       build-essential
                       gettext
                       libstartup-notification0-dev
@@ -24,19 +23,25 @@ stages:
                       gtk-doc-tools
                       libglib2.0-doc
                       libgtk-3-doc
-                      meson
+
 
 build-ubuntu:
-  stage: build
-  <<: *ubuntu_before_script
+  <<: *base_build
+  before_script:
+    - *ubuntu_deps_install \
+      autoconf-archive
+      automake
+      autopoint
   script:
     - ./autogen.sh --enable-gtk-doc=yes
     - make
     - make distcheck
 
 build-ubuntu-meson:
-  stage: build
-  <<: *ubuntu_before_script
+  <<: *base_build
+  before_script:
+    - *ubuntu_deps_install \
+       meson
   script:
     - meson _build -Denable-gtk-doc=true
     - ninja -C _build


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