diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-09-23 10:21:12 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-09-23 10:21:12 +0200 |
commit | c2083b79974de34ffb2d44ec486c40323a99228c (patch) | |
tree | 49bb74244985d3fad2df2924fba81ce1994ab1c6 /.gitlab-ci.yml | |
parent | 52e897dd14c423332188cae4785ecf6e1182cede (diff) | |
download | gitlab-ce-c2083b79974de34ffb2d44ec486c40323a99228c.tar.gz |
Limit test environment size to one project in CI
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3dfab341e39..3f3873e57c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -228,10 +228,10 @@ rake db:seed_fu: stage: test <<: *use-db variables: + SIZE: "1" SETUP_DB: "false" - RAILS_ENV: development + RAILS_ENV: "development" script: - - mkdir -p /home/git/repositories - git clone https://gitlab.com/gitlab-org/gitlab-test.git /home/git/repositories/gitlab-org/gitlab-test.git - bundle exec rake db:setup db:seed_fu |