From c6cd8f8b1f663fb2625524778283631c667d79f7 Mon Sep 17 00:00:00 2001 From: Heiko Wolf <heiko.wolf@uni-leipzig.de> Date: Mon, 14 Jun 2021 12:20:06 +0200 Subject: [PATCH] remove .gitlab-ci.yml --- .gitlab-ci.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 3f8187e85ce..00000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,23 +0,0 @@ -stages: - - mirror - -gitolite_mirror: - stage: mirror - image: - name: alpine/git - entrypoint: [ "/bin/sh", "-c" ] - variables: - GIT_STRATEGY: clone - GIT_CHECKOUT: "false" - script: | - mkdir -p ~/.ssh - echo "${GITLAB_MIRROR_SERVICE}" > ~/.ssh/id_ecdsa - echo "${GITOLITE_SSH_FINGERPRINT}" > ~/.ssh/known_hosts - chmod go-rw -R ~/.ssh - cd /tmp - git clone --mirror ${CI_REPOSITORY_URL} project - cd project - git remote add gitolite git@git.ub.intern.uni-leipzig.de:gitlab-vufind.git - git push --mirror gitolite - tags: [docker] - -- GitLab