Skip to content
Snippets Groups Projects
Commit 30845877 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] FIx CI build

parent d7cdf5f5
No related branches found
No related tags found
No related merge requests found
Pipeline #12949 failed
...@@ -40,15 +40,15 @@ variables: ...@@ -40,15 +40,15 @@ variables:
.docker: .docker:
image: docker:latest image: docker:latest
tags: [ redshift ] tags: [redshift]
services: services:
- docker:dind - docker:dind
before_script: before_script:
- docker login -u "gitlab-ci-token" -p "$CI_BUILD_TOKEN" $CI_REGISTRY - docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY} || true
#- docker login -u "${CI_BUILD_USER}" -p "${CI_BUILD_TOKEN}" after_script:
- docker logout ${CI_REGISTRY}
allow_failure: false allow_failure: false
# --------------------------------------------------------------- # ---------------------------------------------------------------
# Build jobs # Build jobs
# --------------------------------------------------------------- # ---------------------------------------------------------------
...@@ -57,9 +57,7 @@ fast-build: ...@@ -57,9 +57,7 @@ fast-build:
extends: .build extends: .build
image: ${CONTAINER_BUILD_IMAGE} image: ${CONTAINER_BUILD_IMAGE}
before_script: before_script:
- mv /customCache/node_modules ./ - mv /.build-cache/node_modules ./
- cp -rf /customCache/www ./
- cp -rf /customCache/hooks ./
only: only:
- develop - develop
...@@ -79,7 +77,7 @@ docker-for-fast-build: ...@@ -79,7 +77,7 @@ docker-for-fast-build:
allow_failure: true allow_failure: true
before_script: before_script:
- echo 'FROM node:12' > Dockerfile - echo 'FROM node:12' > Dockerfile
- echo 'WORKDIR /customCache' >> Dockerfile - echo 'WORKDIR /.build-cache' >> Dockerfile
- echo 'COPY ./ ./' >> Dockerfile - echo 'COPY ./ ./' >> Dockerfile
- echo 'RUN du -s `find . -maxdepth 1 | egrep -v "^\.$"`>/before.txt' >> Dockerfile - echo 'RUN du -s `find . -maxdepth 1 | egrep -v "^\.$"`>/before.txt' >> Dockerfile
- echo 'RUN yarn' >> Dockerfile - echo 'RUN yarn' >> Dockerfile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment