mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
295 B
13 lines
295 B
12 months ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
readarray -t mod_files < <(find . -type f -name go.mod)
|
||
|
|
||
|
echo "Checking files ${mod_files[@]}"
|
||
|
|
||
|
matches=$(awk '$1 == "go" {print $2}' "${mod_files[@]}" | sort -u | wc -l)
|
||
|
|
||
|
if [[ "${matches}" -ne 1 ]]; then
|
||
|
echo 'Not all go.mod files have matching go versions'
|
||
|
exit 1
|
||
|
fi
|