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

dev-fixtures.gitlab-ci.yml « ci « .gitlab - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27ceb6f37db8cd19ee3ce86bbd6bd414b0958373 (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
.run-dev-fixtures:
  extends:
    - .default-retry
    - .default-cache
    - .default-before_script
    - .use-pg11
  stage: test
  needs: ["setup-test-env pg11"]
  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:
  extends:
    - .run-dev-fixtures
    - .dev-fixtures:rules:ee-and-foss
  script:
    - scripts/gitaly-test-spawn
    - RAILS_ENV=test bundle exec rake db:seed_fu

run-dev-fixtures-ee:
  extends:
    - .run-dev-fixtures
    - .dev-fixtures:rules:ee-only
    - .use-pg11-ee
  script:
    - scripts/gitaly-test-spawn
    - cp ee/db/fixtures/development/* $FIXTURE_PATH
    - RAILS_ENV=test bundle exec rake db:seed_fu