blob: ce97ed50fc75ecd29acaf424b8157a356a0965c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
desc 'Checks if migrations in a branch require downtime'
task downtime_check: :environment do
repo = if defined?(Gitlab::License)
'gitlab'
else
'gitlab-foss'
end
`git fetch https://gitlab.com/gitlab-org/#{repo}.git --depth 1`
Rake::Task['gitlab:db:downtime_check'].invoke('FETCH_HEAD')
end
|