2020-09-06 11:36:10 +00:00
|
|
|
function sanity_deprecated_reporunner_images() {
|
|
|
|
[[ -f .repo-runner.yaml ]] || {
|
2020-09-06 11:40:14 +00:00
|
|
|
report debug "No Repo-Runner config found, skipping check"
|
2020-09-06 11:36:10 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
grep 'quay.io/luzifer/' .repo-runner.yaml || {
|
|
|
|
report success "No Quay image found in Repo-Runner config"
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
report error "Repo-Runner config contains old Quay image"
|
|
|
|
return 1
|
|
|
|
}
|