本站源代码
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.

17 lines
353B

  1. #!/bin/bash
  2. set -e
  3. echo '# linux arm7'
  4. GOARM=7 GOARCH=arm GOOS=linux go build
  5. echo '# linux arm5'
  6. GOARM=5 GOARCH=arm GOOS=linux go build
  7. echo '# windows 386'
  8. GOARCH=386 GOOS=windows go build
  9. echo '# windows amd64'
  10. GOARCH=amd64 GOOS=windows go build
  11. echo '# darwin'
  12. GOARCH=amd64 GOOS=darwin go build
  13. echo '# freebsd'
  14. GOARCH=amd64 GOOS=freebsd go build
上海开阖软件有限公司 沪ICP备12045867号-1