Skip to content
Snippets Groups Projects
Verified Commit 552fd2df authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

Revert "clean up"

This reverts commit 1613be09bd3e4110dc79aa848f6ca39845203ff9.
parent d5a62c4e
No related branches found
No related tags found
No related merge requests found
...@@ -108,16 +108,40 @@ check:links: ...@@ -108,16 +108,40 @@ check:links:
stage: check stage: check
image: docker:19.03.0 image: docker:19.03.0
variables: variables:
# When using dind service, we need to instruct docker, to talk with
# the daemon started inside of the service. The daemon is available
# with a network connection instead of the default
# /var/run/docker.sock socket. docker:19.03.1 does this automatically
# by setting the DOCKER_HOST in
# https://github.com/docker-library/docker/blob/d45051476babc297257df490d22cbd806f1b11e4/19.03.1/docker-entrypoint.sh#L23-L29
#
# The 'docker' hostname is the alias of the service container as described at
# https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#accessing-the-services.
#
# Note that if you're using the Kubernetes executor, the variable
# should be set to tcp://localhost:2376/ because of how the
# Kubernetes executor connects services to the job container
#DOCKER_HOST: tcp://localhost:2376/
#
# When using dind, it's wise to use the overlayfs driver for
# improved performance.
DOCKER_DRIVER: overlay2 DOCKER_DRIVER: overlay2
# Specify to Docker where to create the certificates, Docker will
# create them automatically on boot, and will create
# `/certs/client` that will be shared between the service and job
# container, thanks to volume mount from config.toml
DOCKER_TLS_CERTDIR: "" DOCKER_TLS_CERTDIR: ""
services: services:
- name: docker:19.03.0-dind - name: docker:19.03.0-dind
command: ["--mtu=1458"] command: ["--mtu=1458"]
# , "--registry-mirror", "https://docker-registry.lcsb.uni.lu"]
rules: rules:
- if: $CI_COMMIT_REF_NAME - if: $CI_COMMIT_REF_NAME
- if: $CI_MERGE_REQUEST_ID - if: $CI_MERGE_REQUEST_ID
before_script: before_script:
- cp -r build/external checkFolder - cp -r build/external checkFolder
- ls -lash
- docker version
script: script:
- docker run -v "$(pwd)"/build/external:/checkFolder -t git-r3lab.uni.lu:4567/r3/apps/tailorbird/linkchecker - docker run -v "$(pwd)"/build/external:/checkFolder -t git-r3lab.uni.lu:4567/r3/apps/tailorbird/linkchecker
......
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