From d6fb1b0e1ab6e0ae4fd1e9602ce38de4fa0764ea Mon Sep 17 00:00:00 2001 From: Benoit Lavenier <benoit.lavenier@e-is.pro> Date: Mon, 4 Nov 2019 17:04:49 +0100 Subject: [PATCH] [fix] Update CI to node JS v6 --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f3c60895c..1f91cf991 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,7 +26,7 @@ fast-build: failsafe-build: stage: alt_build when: on_failure - image: node:5 + image: node:6 script: - npm install - npm run postinstall @@ -50,7 +50,7 @@ docker-for-fast-build: services: - docker:dind script: - - echo 'FROM node:5' > Dockerfile + - echo 'FROM node:6' > Dockerfile - echo 'WORKDIR /customCache' >> Dockerfile - echo 'COPY ./ ./' >> Dockerfile - echo 'RUN du -s `find . -maxdepth 1 | egrep -v "^\.$"`>/before.txt' >> Dockerfile @@ -66,7 +66,7 @@ docker-for-fast-build: pages: stage: publish - image: node:latest + image: node:6 variables: GIT_STRATEGY: none script: @@ -99,7 +99,7 @@ mirror: release-web: stage: publish - image: node:latest + image: node:6 variables: GIT_STRATEGY: none script: -- GitLab