[gnome-shell-extensions/wip/fmuellner/ci-tweaks] ci: Switch to extension-ci image



commit 8a9ffda73170461845b47a83cb40be20850b77f5
Author: Florian Müllner <fmuellner gnome org>
Date:   Thu Feb 28 23:33:49 2019 +0100

    ci: Switch to extension-ci image
    
    gnome-shell now provides a docker image with useful tools for extension CI;
    as it contains everything we need, we can speed up CI by not running the
    package manager.
    
    https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/58

 .gitlab-ci.yml | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 72c42e0..26759fd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,3 +1,5 @@
+image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v1
+
 stages:
  - commit_check
  - source_check
@@ -13,7 +15,6 @@ variables:
         - merge_requests
 
 check_commit_log:
-    image: registry.gitlab.gnome.org/gnome/gjs:fedora.static-analysis
     stage: commit_check
     script:
         - ./.gitlab-ci/check-commit-log.sh
@@ -21,7 +22,6 @@ check_commit_log:
         - merge_requests
 
 eslint:
-  image: registry.gitlab.gnome.org/gnome/gjs:fedora.static-analysis
   stage: source_check
   script:
     - sh lint/generate-report.sh -o $LINT_LOG || { cat $LINT_LOG; false; }
@@ -32,10 +32,7 @@ eslint:
     when: on_failure
 
 build-shell-extensions:
-  image: fedora:latest
   stage: build
-  before_script:
-    - dnf install -y meson gettext mozjs60-devel
   script:
     - meson _build .
     - ninja -C _build test install


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