From 2ca8740e3907f019317ad17d3ae1fcd4c79ff5ef Mon Sep 17 00:00:00 2001 From: lukken <lukken@astron.nl> Date: Thu, 11 Nov 2021 11:54:54 +0000 Subject: [PATCH] L2SS-205: Fix broken auto indent --- .gitlab-ci.yml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db96faccb..0e492b5d6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,26 +19,26 @@ stages: # - images .base_docker_store_images: stage: remote_images - image: docker:latest - tags: - - privileged - services: - - name: docker:dind - variables: - DOCKER_TLS_CERTDIR: "/certs" - before_script: - - apk add --update make bash - - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - script: - - touch /root/.Xauthority - # Hack BASH_SOURCE into sourced files, docker its sh shell won't set this - - export BASH_SOURCE=$(pwd)/bootstrap/etc/lofar20rc.sh - # source the lofarrc file and mask its non zero exit code - - . bootstrap/etc/lofar20rc.sh || true - # Allow docker image script test to execute - - 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 - - bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh + image: docker:latest + tags: + - privileged + services: + - name: docker:dind + variables: + DOCKER_TLS_CERTDIR: "/certs" + before_script: + - apk add --update make bash + - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY + script: + - touch /root/.Xauthority + # Hack BASH_SOURCE into sourced files, docker its sh shell won't set this + - export BASH_SOURCE=$(pwd)/bootstrap/etc/lofar20rc.sh + # source the lofarrc file and mask its non zero exit code + - . bootstrap/etc/lofar20rc.sh || true + # Allow docker image script test to execute + - 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 + - bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh docker_store_images_master_tag: extends: .base_docker_store_images only: -- GitLab