blob: a1ad49a0939b8c3718af41c2a09035efe7d21d8c (
plain)
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
|
image: 0xacab.org:4567/leap-docker/ruby:latest
# This is for caching the gems not only between the stages, but also persistent
# on the gitlab-runner so we don't need to install from scratch on every pipeline
cache:
key: "$CI_BUILD_REF_NAME"
untracked: true
paths:
- tests/platform-ci/vendor/
before_script:
- cd tests/platform-ci
stages:
- setup
- syntax
- deploy
setup:
stage: setup
script:
- ./setup.sh
lint:
stage: syntax
script:
- su -c '/usr/local/bin/bundle exec rake lint' cirunner
syntax:
stage: syntax
script:
- su -c '/usr/local/bin/bundle exec rake syntax' cirunner
validate:
stage: syntax
script:
- su -c '/usr/local/bin/bundle exec rake validate' cirunner
templates:
stage: syntax
script:
- su -c '/usr/local/bin/bundle exec rake templates' cirunner
catalog:
stage: syntax
script:
- su -c '/usr/local/bin/bundle exec rake catalog' cirunner
#rspec:
# stage: rspec
# script:
# - /usr/local/bin/bundle exec rake spec
# The deploy_test job is run on any merge request. This is used to ensure that
# the merge request will deploy and test properly. It is not run when the merge
# request is accepted into master, instead the 'latest' job below is run
# instead.
deploy_test:
stage: deploy
except:
- master
script:
- su -c '/usr/bin/unbuffer bash -o pipefail ./ci-build.sh | /usr/bin/ts' cirunner
# Latest job will only run on the master branch, which means all merge requests
# that are created from branches don't get to deploy to the latest-ci server.
# When a merge request is merged, then the latest job will deploy the code to
# the latest provider, and the deployment will be recorded in an environment
# named 'latest'
ci.leap.se:
stage: deploy
environment:
name: staging
only:
- master
script:
- su -c '/usr/bin/unbuffer ./ci-build.sh' cirunner
demo.bitmask.net:
stage: deploy
environment:
name: production/demo/vpn
only:
- master
when: manual
script:
- su -c '/usr/bin/unbuffer ./ci-build.sh' cirunner
mail.bitmask.net:
stage: deploy
environment:
name: production/demo/mail
only:
- master
when: manual
script:
- su -c '/usr/bin/unbuffer ./ci-build.sh' cirunner
|