diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8fba268be7d..a58fbc57b39 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,19 +1,13 @@ # This file is generated by GitLab CI before_script: - - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin + - ./bin/build_prepare.sh - ruby -v - which ruby - - gem install bundler - - which bundle - - echo $PATH - - cp config/database.yml.mysql config/database.yml + - gem install bundler --no-ri --no-rdoc - cp config/gitlab.yml.example config/gitlab.yml - - 'sed "s/username\:.*$/username\: runner/" -i config/database.yml' - - 'sed "s/password\:.*$/password\: ''password''/" -i config/database.yml' - - sed "s/gitlabhq_test/gitlabhq_test_$((RANDOM/5000))/" -i config/database.yml - touch log/application.log - touch log/test.log - - bundle install --without postgres production --jobs $(nproc) + - bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}" - bundle exec rake db:create RAILS_ENV=test Rspec: script: @@ -48,4 +42,4 @@ Brakeman: - bundle exec rake brakeman tags: - ruby - - mysql
\ No newline at end of file + - mysql |