1
1
mirror of https://github.com/walles/moar.git synced 2024-07-07 08:36:29 +03:00

Improve marketing value

Ref: https://github.com/walles/moar/issues/103
This commit is contained in:
Johan Walles 2024-03-18 19:20:51 +01:00
parent b82895c3b6
commit 4939e6a123
2 changed files with 5 additions and 0 deletions

View File

@ -48,6 +48,7 @@ git tag --annotate "${VERSION}"
#
# NOTE: Make sure this list matches the one in test.sh
GOOS=linux GOARCH=386 ./build.sh
GOOS=linux GOARCH=amd64 ./build.sh
GOOS=linux GOARCH=arm ./build.sh # Ref: https://github.com/walles/moar/issues/122
GOOS=darwin GOARCH=amd64 ./build.sh
GOOS=windows GOARCH=amd64 ./build.sh

View File

@ -27,6 +27,10 @@ echo "Testing cross compilation..."
echo " Linux i386..."
GOOS=linux GOARCH=386 ./build.sh
# Ref:
echo " Linux amd64..."
GOOS=linux GOARCH=amd64 ./build.sh
# Ref: https://github.com/walles/moar/issues/122
echo " Linux arm32..."
GOOS=linux GOARCH=arm ./build.sh