1
1
mirror of https://github.com/walles/moar.git synced 2024-09-11 12:15:43 +03:00

This part is quite slow, add more tracking

This commit is contained in:
Johan Walles 2022-12-19 10:08:38 +01:00
parent 82ac5dd583
commit f8e226bbe9

View File

@ -24,8 +24,11 @@ go test -timeout 20s ./...
# Ensure we can cross compile # Ensure we can cross compile
# NOTE: Make sure this list matches the one in release.sh # NOTE: Make sure this list matches the one in release.sh
echo "Testing cross compilation..." echo "Testing cross compilation..."
echo " Linux i386..."
GOOS=linux GOARCH=386 ./build.sh GOOS=linux GOARCH=386 ./build.sh
echo " macOS amd64..."
GOOS=darwin GOARCH=amd64 ./build.sh GOOS=darwin GOARCH=amd64 ./build.sh
echo " Windows amd64..."
GOOS=windows GOARCH=amd64 ./build.sh GOOS=windows GOARCH=amd64 ./build.sh
# Verify sending the output to a file # Verify sending the output to a file