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.

14 lines
348 B

  1. #!/bin/sh
  2. mkdir -p bin
  3. cd cmd
  4. echo "building linux binaries"
  5. GOOS=linux GOARCH=amd64 go build -o ../bin/kzgceremony-amd64-linux *.go
  6. echo "building windows binaries"
  7. GOOS=windows GOARCH=amd64 go build -o ../bin/kzgceremony-amd64.exe *.go
  8. echo "building macOS binaries"
  9. GOOS=darwin GOARCH=amd64 go build -o ../bin/kzgceremony-amd64-darwin *.go