From 0f534ac5d77b24c0be0275b04fadfbb95d8dff08 Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <swaelens.jonathan@opensides.be>
Date: Wed, 28 Feb 2018 15:56:41 +0100
Subject: [PATCH] :ambulance: fix(gitlab-ci): Add correct docker image name

Add correct docker image name

Signed-off-by: Jonathan Swaelens <swaelens.jonathan@opensides.be>
---
 .gitlab-ci.yml | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e6a53c879..75d00bd08 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,8 +7,7 @@ variables:
 
 stages:
   - test-perl
-  - test-php-jessie
-  - test-php-stretch
+  - test-php-lint
   - test-php-codesniffer
   - test-manpages
   - transifex
@@ -42,8 +41,8 @@ create_perl_lint_rapport:
 
 # PHP lint (jessie)
 create_php_lint_rapport_jessie:
-  image: 5.6.33-cli-jessie
-  stage: test-php-jessie
+  image: php:5.6.33-cli-jessie
+  stage: test-php-lint
   only:
     - branches
     - tags
@@ -52,8 +51,8 @@ create_php_lint_rapport_jessie:
 
 # PHP lint (stretch)
 create_php_lint_rapport_stretch:
-  image: 5.6.33-cli-stretch
-  stage: test-php-stretch
+  image: php:5.6.33-cli-stretch
+  stage: test-php-lint
   only:
     - branches
     - tags
-- 
GitLab