summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 0269b937127709376384df7e78bb177e31977512 (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
image: leapcode/ruby:2.1-slim

stages:
  - build
  - test
  - trigger

build:
  stage: build
  script:
    - "rake build"
    - "gem install --user-install pkg/leap_cli-*.gem"
    - export PATH="$PATH:$(ruby -e 'puts Gem.user_dir')/bin"
    - leap
  artifacts:
    paths:
      - pkg/leap_cli-*.gem
    name: "leap_cli_${CI_BUILD_REF_NAME}_${CI_BUILD_REF}"
    expire_in: 3 month

test:
  stage: test
  script:
    - bundle install --path vendor/bundle --with test
    - bundle exec rake test

# trigger leap_platform pipeline
trigger:
  stage: trigger
  type: deploy
  script:
    - "curl -s -X POST -F token=${PLATFORM_TRIGGER_TOKEN} -F ref=develop https://0xacab.org/api/v3/projects/129/trigger/builds"