Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sidekiq.rake « ci « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12fd363593304e481e89e3152578a83d6e12632d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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