refactor(mk): move build rules into separate scripts (#855)

See https://github.com/ooni/probe/issues/2218
This commit is contained in:
Simone Basso 2022-08-17 13:16:53 +02:00 committed by GitHub
commit 5c0368c862
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 539 additions and 273 deletions

19
CLI/check-go-version Executable file
View file

@ -0,0 +1,19 @@
#!/bin/bash
set -euo pipefail
EXPECTED_GOLANG_VERSION=go$(cat GOVERSION)
printf "checking for go... "
if ! command -v go; then
echo "not found"
exit 1
fi
printf "checking for go version... "
GOLANG_VERSION=$(go version | awk '{print $3}')
echo $GOLANG_VERSION
if [[ $GOLANG_VERSION != $EXPECTED_GOLANG_VERSION ]]; then
echo "FATAL: go version must be $EXPECTED_GOLANG_VERSION instead of $GOLANG_VERSION"
exit 1
fi