Skip to content
Snippets Groups Projects
Commit 2ca8740e authored by Corné Lukken's avatar Corné Lukken
Browse files

L2SS-205: Fix broken auto indent

parent 924aa23a
No related branches found
No related tags found
1 merge request!183Docker image building & pushing with CI pipeline caching
...@@ -19,26 +19,26 @@ stages: ...@@ -19,26 +19,26 @@ stages:
# - images # - images
.base_docker_store_images: .base_docker_store_images:
stage: remote_images stage: remote_images
image: docker:latest image: docker:latest
tags: tags:
- privileged - privileged
services: services:
- name: docker:dind - name: docker:dind
variables: variables:
DOCKER_TLS_CERTDIR: "/certs" DOCKER_TLS_CERTDIR: "/certs"
before_script: before_script:
- apk add --update make bash - apk add --update make bash
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
script: script:
- touch /root/.Xauthority - touch /root/.Xauthority
# Hack BASH_SOURCE into sourced files, docker its sh shell won't set this # Hack BASH_SOURCE into sourced files, docker its sh shell won't set this
- export BASH_SOURCE=$(pwd)/bootstrap/etc/lofar20rc.sh - export BASH_SOURCE=$(pwd)/bootstrap/etc/lofar20rc.sh
# source the lofarrc file and mask its non zero exit code # source the lofarrc file and mask its non zero exit code
- . bootstrap/etc/lofar20rc.sh || true - . bootstrap/etc/lofar20rc.sh || true
# Allow docker image script test to execute # Allow docker image script test to execute
- chmod u+x $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh - chmod u+x $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh
# Do not remove 'bash' or statement will be ignored by primitive docker shell # Do not remove 'bash' or statement will be ignored by primitive docker shell
- bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh - bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh
docker_store_images_master_tag: docker_store_images_master_tag:
extends: .base_docker_store_images extends: .base_docker_store_images
only: only:
......
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