2019-04-12 04:56:38 -04:00
|
|
|
# Insurance in case a gem needed by one of our releases gets yanked from
|
|
|
|
# rubygems.org in the future.
|
|
|
|
cache gems:
|
|
|
|
extends: .dedicated-no-docs-no-db-pull-cache-job
|
|
|
|
script:
|
|
|
|
- bundle package --all --all-platforms
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- vendor/cache
|
|
|
|
only:
|
|
|
|
- master@gitlab-org/gitlab-ce
|
|
|
|
- master@gitlab-org/gitlab-ee
|
|
|
|
- tags
|
|
|
|
dependencies:
|
|
|
|
- setup-test-env
|
|
|
|
|
|
|
|
gitlab_git_test:
|
2019-07-01 11:04:19 -04:00
|
|
|
extends:
|
|
|
|
- .dedicated-runner
|
|
|
|
- .no-docs-and-no-qa
|
2019-04-12 04:56:38 -04:00
|
|
|
variables:
|
|
|
|
SETUP_DB: "false"
|
|
|
|
before_script: []
|
|
|
|
dependencies: []
|
|
|
|
cache: {}
|
|
|
|
script:
|
|
|
|
- spec/support/prepare-gitlab-git-test-for-commit --check-for-changes
|
|
|
|
|
|
|
|
no_ee_check:
|
2019-07-01 11:04:19 -04:00
|
|
|
extends:
|
|
|
|
- .dedicated-runner
|
|
|
|
- .no-docs-and-no-qa
|
2019-04-12 04:56:38 -04:00
|
|
|
variables:
|
|
|
|
SETUP_DB: "false"
|
|
|
|
before_script: []
|
|
|
|
dependencies: []
|
|
|
|
cache: {}
|
|
|
|
script:
|
|
|
|
- scripts/no-ee-check
|
|
|
|
only:
|
|
|
|
- /.+/@gitlab-org/gitlab-ce
|