Commit 5cd44c33 authored by Quentin Yeche's avatar Quentin Yeche
Browse files

Update .gitlab-ci.yml file to force the two docker images to be run...

Update .gitlab-ci.yml file to force the two docker images to be run sequentially, in order to avoid race condition and file lock errors
No related merge requests found
Showing with 5 additions and 2 deletions
+5 -2
...@@ -8,11 +8,14 @@ ...@@ -8,11 +8,14 @@
# #
# This template uses one generic job with conditional builds # This template uses one generic job with conditional builds
# for the default branch and all other (MR) branches. # for the default branch and all other (MR) branches.
stages:
- build_jupyterlab
- build_jupyterhub
docker-build_jupyterlab: docker-build_jupyterlab:
# Use the official docker image. # Use the official docker image.
image: docker:latest image: docker:latest
stage: build stage: build_jupyterlab
services: services:
- docker:dind - docker:dind
before_script: before_script:
...@@ -32,7 +35,7 @@ docker-build_jupyterlab: ...@@ -32,7 +35,7 @@ docker-build_jupyterlab:
docker-build_jupyterhub: docker-build_jupyterhub:
# Use the official docker image. # Use the official docker image.
image: docker:latest image: docker:latest
stage: build stage: build_jupyterhub
services: services:
- docker:dind - docker:dind
before_script: before_script:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment