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

check.rake « artifacts « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a105261ed516e060475526ace14843c73e800f2b (plain)
1
2
3
4
5
6
7
8
namespace :gitlab do
  namespace :artifacts do
    desc 'GitLab | Artifacts | Check integrity of uploaded job artifacts'
    task check: :environment do
      Gitlab::Verify::RakeTask.run!(Gitlab::Verify::JobArtifacts)
    end
  end
end