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: 057bb17dbda3aa2d979cca1eb43766c1c683633a (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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