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

setup.gitlab-ci.yml « ci « .gitlab - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 923b0ae7c8d87e3ca3dbe8384f2b475617fafd57 (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
# Insurance in case a gem needed by one of our releases gets yanked from
# rubygems.org in the future.
cache gems:
  extends:
    - .default-tags
    - .default-retry
    - .default-cache
    - .default-before_script
    - .no-docs
  dependencies:
    - setup-test-env
  variables:
    SETUP_DB: "false"
  script:
    - bundle package --all --all-platforms
  artifacts:
    paths:
      - vendor/cache
  only:
    refs:
      - master@gitlab-org/gitlab-ce
      - master@gitlab-org/gitlab-ee
      - tags

gitlab_git_test:
  extends: .no-docs-no-qa
  dependencies: []
  script:
    - spec/support/prepare-gitlab-git-test-for-commit --check-for-changes

no_ee_check:
  extends: .no-docs-no-qa
  dependencies: []
  script:
    - scripts/no-ee-check
  only:
    refs:
      - /.+/@gitlab-org/gitlab-ce