diff options
-rw-r--r-- | .gitlab-ci.yml | 95 |
1 files changed, 51 insertions, 44 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5524c9a7fcb..ed22e4852a2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,58 +10,65 @@ before_script: - bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}" - bundle exec rake db:create RAILS_ENV=test -spec:feature: +spec:other: script: - - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:feature + - RAILS_ENV=test bundle exec rspec -f Fuubar spec/helpers/ tags: - ruby - mysql -spec:api: - script: - - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:api - tags: - - ruby - - mysql +# spec:feature: +# script: +# - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:feature +# tags: +# - ruby +# - mysql -spec:other: - script: - - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:other - tags: - - ruby - - mysql +# spec:api: +# script: +# - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:api +# tags: +# - ruby +# - mysql -spinach:project: - script: - - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project - tags: - - ruby - - mysql +# spec:other: +# script: +# - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:other +# tags: +# - ruby +# - mysql -spinach:other: - script: - - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:other - tags: - - ruby - - mysql +# spinach:project: +# script: +# - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project +# tags: +# - ruby +# - mysql -jasmine:ci: - script: - - RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci - tags: - - ruby - - mysql +# spinach:other: +# script: +# - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:other +# tags: +# - ruby +# - mysql -rubocop: - script: - - bundle exec rubocop - tags: - - ruby - - mysql +# jasmine:ci: +# script: +# - RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci +# tags: +# - ruby +# - mysql -brakeman: - script: - - bundle exec rake brakeman - tags: - - ruby - - mysql +# rubocop: +# script: +# - bundle exec rubocop +# tags: +# - ruby +# - mysql + +# brakeman: +# script: +# - bundle exec rake brakeman +# tags: +# - ruby +# - mysql |