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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-20 12:24:38 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-20 12:24:38 +0300
commit898e2cc1dfa88b4ac39cb4b35011f61b37f57b51 (patch)
treec6524edb6c9a43cccf93be05c36883fde1a53ee4 /.gitlab
parentb5571e6e22cdacc81f78eff5943d68c8ba220fbb (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to '.gitlab')
-rw-r--r--.gitlab/ci/dev-fixtures.gitlab-ci.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.gitlab/ci/dev-fixtures.gitlab-ci.yml b/.gitlab/ci/dev-fixtures.gitlab-ci.yml
new file mode 100644
index 00000000000..a5dab5d8708
--- /dev/null
+++ b/.gitlab/ci/dev-fixtures.gitlab-ci.yml
@@ -0,0 +1,30 @@
+.run-dev-fixtures:
+ extends:
+ - .only-code-rails-job-base
+ - .use-pg9
+ stage: test
+ needs: ["setup-test-env"]
+ dependencies: ["setup-test-env"]
+ variables:
+ FIXTURE_PATH: "db/fixtures/development"
+ SEED_CYCLE_ANALYTICS: "true"
+ SEED_PRODUCTIVITY_ANALYTICS: "true"
+ CYCLE_ANALYTICS_ISSUE_COUNT: 1
+ SIZE: 0 # number of external projects to fork, requires network connection
+ # SEED_NESTED_GROUPS: "false" # requires network connection
+
+run-dev-fixtures-foss:
+ extends: .run-dev-fixtures
+ script:
+ - scripts/gitaly-test-spawn
+ - RAILS_ENV=test bundle exec rake db:seed_fu
+
+run-dev-fixtures-ee:
+ extends:
+ - .only-ee
+ - .use-pg9-ee
+ - .run-dev-fixtures
+ script:
+ - scripts/gitaly-test-spawn
+ - cp ee/db/fixtures/development/* $FIXTURE_PATH
+ - RAILS_ENV=test bundle exec rake db:seed_fu