Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
7e07bc06
Commit
7e07bc06
authored
Sep 15, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused tasks
parent
ed18e04b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
20 deletions
+0
-20
lib/tasks/ci/setup.rake
lib/tasks/ci/setup.rake
+0
-7
lib/tasks/ci/sidekiq.rake
lib/tasks/ci/sidekiq.rake
+0
-13
No files found.
lib/tasks/ci/setup.rake
deleted
100644 → 0
View file @
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
lib/tasks/ci/sidekiq.rake
deleted
100644 → 0
View file @
ed18e04b
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment