summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-01-31 14:38:45 -0600
committerMike Greiling <mike@pixelcog.com>2017-01-31 14:38:45 -0600
commit5fcbe12730960e93b1d3afe6be846eb9ef570d32 (patch)
tree79a09bfb5e38f7c366b503d363d561ba98f13799 /.gitlab-ci.yml
parentecdcd1be87e140c144bb2afc861a1dc56b297cdd (diff)
parent2c358b4b5613d6d398533dc559674da14de3c0d7 (diff)
downloadgitlab-ce-5fcbe12730960e93b1d3afe6be846eb9ef570d32.tar.gz
Merge branch 'master' into go-go-gadget-webpack
* master: (83 commits) Fix small typo on new branch button spec Abillity to promote project labels to group labels Update and pin the `jwt` gem to ~> 1.5.6 refactor merge request build service Update index.md Clarify that Auto Deploy requires a public project. cop for gem fetched from a git source Add CHANGELOG entry Remove new branch button for confidential issues Remove flash warning from login page add complete changelog Add project ID index to `project_authorizations` table to optimize queries Fix disable storing of sensitive information when importing a new repo Fix notification when global=disabled, group=watch Ensure rake is called within the correct bundle context Fix 8.16.0 release date. Improve search within group logic Add changelog item about new attributes in group api Update group api doc with full_name and full_path attributes Add tests for nested groups in search service and search helper ...
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1772fda9225..e2141716311 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -273,7 +273,7 @@ rake db:migrate:reset:
<<: *use-db
<<: *dedicated-runner
script:
- - rake db:migrate:reset
+ - bundle exec rake db:migrate:reset
rake db:seed_fu:
stage: test
@@ -303,7 +303,7 @@ karma:
<<: *dedicated-runner
script:
- npm link istanbul
- - rake karma
+ - bundle exec rake karma
artifacts:
name: coverage-javascript
expire_in: 31d
@@ -354,10 +354,10 @@ migration paths:
- cp config/resque.yml.example config/resque.yml
- sed -i 's/localhost/redis/g' config/resque.yml
- bundle install --without postgres production --jobs $(nproc) $FLAGS --retry=3
- - rake db:drop db:create db:schema:load db:seed_fu
+ - bundle exec rake db:drop db:create db:schema:load db:seed_fu
- git checkout $CI_BUILD_REF
- source scripts/prepare_build.sh
- - rake db:migrate
+ - bundle exec rake db:migrate
coverage:
stage: post-test