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.
20 lines
461 B
20 lines
461 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo '# linux arm7'
|
|
GOARM=7 GOARCH=arm GOOS=linux go build
|
|
echo '# linux arm5'
|
|
GOARM=5 GOARCH=arm GOOS=linux go build
|
|
echo '# windows 386'
|
|
GOARCH=386 GOOS=windows go build
|
|
echo '# windows amd64'
|
|
GOARCH=amd64 GOOS=windows go build
|
|
echo '# darwin'
|
|
GOARCH=amd64 GOOS=darwin go build
|
|
echo '# freebsd'
|
|
GOARCH=amd64 GOOS=freebsd go build
|
|
echo '# aix ppc64'
|
|
GOARCH=ppc64 GOOS=aix go build
|
|
echo '# solaris amd64'
|
|
GOARCH=amd64 GOOS=solaris go build
|
|
|