summaryrefslogtreecommitdiff
path: root/spec/support/gitlab_stubs/gitlab_ci_includes.yml
blob: e74773ce23e0ade0e65b875ad2c37cc04693b94a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
rspec 0 1:
  stage: build
  script: 'rake spec'
  needs: []

rspec 0 2:
  stage: build
  script: 'rake spec'
  needs: []

spinach:
  stage: build
  script: 'rake spinach'
  needs: []

docker:
  stage: test
  script: 'curl http://dockerhub/URL'
  needs: [spinach, rspec 0 1]