Commit 7e07bc06 authored by Kamil Trzcinski's avatar Kamil Trzcinski

Remove unused tasks

parent ed18e04b
namespace :ci do
desc "GitLab CI | Setup gitlab db"
task :setup do
Rake::Task["db:setup"].invoke
Rake::Task["ci:add_limits_mysql"].invoke
end
end
namespace :ci do
namespace :sidekiq do
desc "GitLab CI | Stop sidekiq"
task :stop do
exec({'RAILS_ENV' => Rails.env}, 'script/background_jobs stop')
end
desc "GitLab CI | Start sidekiq"
task :start do
exec({'RAILS_ENV' => Rails.env}, 'script/background_jobs start')
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment