-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml.example
58 lines (52 loc) · 1.56 KB
/
.gitlab-ci.yml.example
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
49
50
51
52
53
54
55
56
57
58
# For DevOps in GitLab
#
# Generate a key pair either on your host
# - Add the private key to the variable $SSH_PRIVATE_KEY_STAGING
# - Add the public key to the staging host in ~/.ssh/authorized_keys
#
# Provide the following Variables in GitLab in Settings > CI / CD
# - $SSH_PRIVATE_KEY_STAGING
# - $HOST_STAGING
# - $USER_HOST_STAGING
# - $WORKING_DIR_STAGING
stages:
- deploy
deploy_staging:
stage: deploy
image: jaromirpufler/docker-openssh-client
only:
refs:
- develop
before_script:
##
## Install ssh-agent if not already installed, it is required by Docker.
## (change apt-get to yum if you use an RPM-based image)
##
- 'which ssh-agent || ( apt-get install openssh-client -y )'
##
## Run ssh-agent (inside the build environment)
##
- eval $(ssh-agent -s)
##
## Create the SSH directory and give it the right permissions
##
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
##
## 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_STAGING" | tr -d '\r' > ~/.ssh/id_rsa
- chmod 700 ~/.ssh/id_rsa
- ssh-add ~/.ssh/id_rsa
- ssh-keyscan $HOST_STAGING >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
script: |
ssh $USER_HOST_STAGING "
cd $WORKING_DIR_STAGING
git fetch
git checkout $CI_COMMIT_SHORT_SHA
make staging
"