Skip to content

Commit

Permalink
Add build release script
Browse files Browse the repository at this point in the history
  • Loading branch information
mlejva committed Apr 24, 2020
1 parent f6e05cf commit c01b360
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions build-linux.sh

This file was deleted.

5 changes: 5 additions & 0 deletions build-release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

env GOOS=darwin GOARCH=amd64 go build -o ./build/foundry-macos-x86_64
env GOOS=linux GOARCH=amd64 go build -o ./build/foundry-linux-x86_64
env GOOS=linux GOARCH=arm64 go build -o ./build/foundry-linux-arm64
5 changes: 0 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#!/bin/sh


# env GOOS=darwin GOARCH=amd64 go build -o ./build/foundry-macos-x86_64
# env GOOS=linux GOARCH=amd64 go build -o ./build/foundry-linux-x86_64
# env GOOS=linux GOARCH=arm64 go build -o ./build/foundry-linux-arm64

flags=$@
build_name="foundry"

Expand Down

0 comments on commit c01b360

Please sign in to comment.