-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
102 lines (97 loc) · 3.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
################################################################################
# Gitlab CI for Drupal 7 project, code quality and deploy.
#
# Project: https://repository.unesco.org/gitlab/drupal/unescorg
# Documentation: https://repository.unesco.org/gitlab/drupal/unescorg
# Inspired by: https://gitlab.com/mog33/gitlab-ci-drupal
# https://blog.callr.tech/gitlab-ansible-docker-ci-cd/
#
# License: GPL-3
#
################################################################################
variables:
################################################################################
# Define your stages, this will be "pipelines" in gitlab.
# https://docs.gitlab.com/ee/ci/pipelines.html
################################################################################
stages:
- build
- deploy
################################################################################
# Build Template
################################################################################
build:
stage: build
tags:
- docker
when: always
artifacts:
untracked: true
expire_in: 1 hour
when: on_success
paths:
- style-guide
- assets
allow_failure: false
before_script:
- git fetch --all
- git checkout $CI_COMMIT_REF_NAME
- git reset --hard origin/$CI_COMMIT_REF_NAME
script:
- npm ci
- gulp build
################################################################################
# Deploy stage:
# Depends on test in stage
# TODO: check for unwanted modules
################################################################################
deploy_stage:
stage: deploy
tags:
- deploy
- shell
only:
- develop
except:
- master
allow_failure: false
before_script:
- which ssh-agent || ( apt update -y && apt install openssh-client -y )
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- ssh-keyscan -H repository.unesco.org >> ~/.ssh/known_hosts
environment:
name: $CI_COMMIT_REF_NAME
url: https://en.srvbltydev.unesco.org/typography
dependencies:
- build
when: on_success
script:
- rsync -acerOo --delete -e "ssh -p22 -oStrictHostKeyChecking=no" style-guide/* assets javascripts favicon.ico denix@$STAGE_HOST:$GIT_ROOT/typography
################################################################################
# Deploy prod:
# Secure everything, disable views
################################################################################
deploy_production:
stage: deploy
tags:
- deploy
- shell
only:
- master
when: manual
dependencies:
- build
before_script:
- which ssh-agent || ( apt update -y && apt install openssh-client -y )
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
script:
- rsync -acerOo --delete -e "ssh -p22 -oStrictHostKeyChecking=no -i ~/.ssh/id_rsa_deploy" style-guide/* favicon.ico assets javascripts denix@$PRODUCTION_HOST:$GIT_ROOT_PROD/typography
environment:
name: prod
url: https://en.unesco.org/typography