Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab_ci_includes.yml « gitlab_stubs « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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]