-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
48 lines (43 loc) · 1.77 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
stages:
- build
- deploy
variables:
GIT_DEPTH: 1
DEPLOY_PATH: ~/ebsi-diplomata
# See https://docs.gitlab.com/ee/ci/ssh_keys/#ssh-keys-when-using-the-docker-executor
default:
before_script:
## Install ssh-agent and rsync if not already installed.
- apt-get update -y
- apt-get install openssh-client rsync -y
## Run ssh-agent (inside the build environment)
- eval $(ssh-agent -s)
## Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store
## We're using tr to fix line endings which makes ed25519 keys work
## without extra base64 encoding.
## https://gitlab.com/gitlab-examples/ssh-private-key/issues/1#note_48526556
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
# Create the SSH directory and copy private key. Also set permissions
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
# Add remote host pub key to known_hosts
- ssh-keyscan $REMOTE_HOST >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- rsync -a --delete --exclude '.env-google' ${CI_PROJECT_DIR}/ ${REMOTE_USER}@${REMOTE_HOST}:${DEPLOY_PATH}
build-base-image:
image: registry.docker.grnet.gr/dockerhub-cache/library/debian:buster-slim
stage: build
variables:
GIT_SUBMODULE_STRATEGY: recursive
script:
- ssh ${REMOTE_USER}@${REMOTE_HOST} "cd ${DEPLOY_PATH} && sudo ./build-base-image.sh --tag local"
rules:
- if: $CI_COMMIT_REF_NAME == "develop" && $CI_PIPELINE_SOURCE == "schedule"
deploy-service:
image: registry.docker.grnet.gr/dockerhub-cache/library/debian:buster-slim
stage: deploy
script:
- ssh ${REMOTE_USER}@${REMOTE_HOST} "cd ${DEPLOY_PATH} && sudo docker compose --env-file .env-google up --detach --build --remove-orphans"
rules:
- if: $CI_COMMIT_REF_NAME == "develop"