Skip to content

Commit

Permalink
Correct verbose build flag in appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
extremecoders-re committed May 6, 2021
1 parent 349d555 commit 011b141
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,25 @@ test: off
build_script:
- SET GOOS=windows
- SET GOARCH=386
- go build -ldflags -x "-s -w" -o go-dispatch-proxy.win.x86.exe
- go build -x -ldflags "-s -w" -o go-dispatch-proxy.win.x86.exe

- SET GOARCH=amd64
- go build -ldflags -x "-s -w" -o go-dispatch-proxy.win.x64.exe
- go build -x -ldflags "-s -w" -o go-dispatch-proxy.win.x64.exe

- SET GOOS=linux
- SET GOARCH=386
- go build -ldflags -x "-s -w" -o go-dispatch-proxy.linux.x86
- go build -x -ldflags "-s -w" -o go-dispatch-proxy.linux.x86

- SET GOARCH=amd64
- go build -ldflags -x "-s -w" -o go-dispatch-proxy.linux.x64
- go build -x -ldflags "-s -w" -o go-dispatch-proxy.linux.x64

- SET GOOS=darwin
- SET GOARCH=amd64
- go build -ldflags -x "-s -w" -o go-dispatch-proxy.macos.x64
- go build -x -ldflags "-s -w" -o go-dispatch-proxy.macos.x64

- SET GOOS=darwin
- SET GOARCH=arm64
- go build -ldflags -x "-s -w" -o go-dispatch-proxy.macos.arm64
- go build -x -ldflags "-s -w" -o go-dispatch-proxy.macos.arm64

after_build:
# - upx -9 -o go-dispatch-proxy.exe go-dispatch-proxy.win.x86.exe
Expand Down

0 comments on commit 011b141

Please sign in to comment.