summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: fc7cc1dce238949b011f07f9a3327c1079f722ad (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
before_script:
  - ruby -v
  - bundle install --path vendor/bundle --jobs $(nproc)  "${FLAGS[@]}"
  - git submodule update --init

stages:
  - syntax
# - rspec
  - build

lint:
  stage: syntax
  script:
    - bundle exec rake lint

syntax:
  stage: syntax
  script:
    - bundle exec rake syntax

validate:
  stage: syntax
  script:
    - bundle exec rake validate

templates:
  stage: syntax
  script:
    - bundle exec rake templates

catalog:
  stage: syntax
  script:
    - bundle exec rake catalog

#rspec:
#  stage: rspec
#  script:
#    - bundle exec rake spec

build:
  stage: build
  script:
    - echo $CI_BUILD_REF_NAME
    - ssh testbot@greyhound.leap.se -p 4422 "/usr/local/bin/platform_test/buildscripts/build-on-greyhound.sh $CI_BUILD_REF_NAME -x"