From b469a67fd7bf7ae55b064b77a4253849a74e1d0a Mon Sep 17 00:00:00 2001 From: Eduard Frankford <e.frankford@student.uibk.ac.at> Date: Sun, 22 May 2022 13:35:03 +0200 Subject: [PATCH] testing --- .gitlab-ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c96a13659..a6847f11f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -132,8 +132,6 @@ deploy: # - 'docker-push' image: ubuntu:20.04 before_script: - - whoami - - chmod 777 -R /tmp - apt-get update -qy - apt-get install -y rsync openssh-client - mkdir -p ~/.ssh @@ -144,6 +142,5 @@ deploy: - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config script: - whoami - - echo "Hello world" - - ssh contDeploy@codeability-austria -p 1022 -f "(cd /home/michael/gitsearch git pull && cd src/main/docker/; GIT_BRANCH=`git rev-parse --abbrev-ref HEAD` COMMIT_ID=`git rev-parse HEAD` SPRING_PROFILES_ACTIVE=staging,swagger docker-compose -f gitsearch.yml up -d --no-deps --build gitsearch-app)" + - ssh contDeploy@codeability-austria -p 1022 -f "cd /home/michael/gitsearch; git pull; cd src/main/docker/; GIT_BRANCH=`git rev-parse --abbrev-ref HEAD` COMMIT_ID=`git rev-parse HEAD` SPRING_PROFILES_ACTIVE=staging,swagger docker-compose -f gitsearch.yml up -d --no-deps --build gitsearch-app" when: always -- GitLab