blob: ab2d5aa515b371658e7c8563c5cb845ef84b3e07 (
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
|
image: leapcode/ruby
# 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
- build
setup:
stage: setup
script:
- ./setup.sh
lint:
stage: syntax
script:
- /usr/local/bin/bundle exec rake lint
syntax:
stage: syntax
script:
- /usr/local/bin/bundle exec rake syntax
validate:
stage: syntax
script:
- /usr/local/bin/bundle exec rake validate
templates:
stage: syntax
script:
- /usr/local/bin/bundle exec rake templates
catalog:
stage: syntax
script:
- /usr/local/bin/bundle exec rake catalog
#rspec:
# stage: rspec
# script:
# - /usr/local/bin/bundle exec rake spec
build:
stage: build
script:
- /usr/bin/unbuffer ./ci-build.sh | /usr/bin/ts -s
|