[epiphany] CI: Use alpine image for check stage



commit 27b4bb4c4976f7ae636cc639977d05c07b225424
Author: Jan-Michael Brummer <jan brummer tabos org>
Date:   Tue Jul 16 19:47:18 2019 +0200

    CI: Use alpine image for check stage

 .gitlab-ci.yml | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 93b2d5c47..523411a48 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,12 +1,17 @@
 include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
 
+stages:
+  - check
+  - test
+  - deploy
+
 check-code-style:
-  stage: 'build'
-  image: 'registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:master'
+  stage: 'check'
+  image: alpine:latest
   before_script:
-    - dnf install -y uncrustify
+    - apk update && apk add uncrustify bash python3
   script:
-    - data/check-code-style
+    - bash data/check-code-style
 
 variables:
   BUNDLE: 'epiphany-git.flatpak'


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