-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from azimjohn/new-jprq
[release] jprq 2.0
- Loading branch information
Showing
7 changed files
with
57 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ go.sum | |
package.json | ||
|
||
# binaries | ||
bin/ | ||
cli/jprq | ||
server/jprq-server | ||
website/jprq-website |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
GOOS=darwin GOARCH=amd64 go build -o bin/jprq-darwin-amd64 cli/*.go | ||
GOOS=darwin GOARCH=arm64 go build -o bin/jprq-darwin-arm64 cli/*.go | ||
GOOS=linux GOARCH=386 go build -o bin/jprq-linux-386 cli/*.go | ||
GOOS=linux GOARCH=amd64 go build -o bin/jprq-linux-amd64 cli/*.go | ||
GOOS=linux GOARCH=arm go build -o bin/jprq-linux-arm cli/*.go | ||
GOOS=linux GOARCH=arm64 go build -o bin/jprq-linux-arm64 cli/*.go | ||
GOOS=linux GOARCH=ppc64 go build -o bin/jprq-linux-ppc64 cli/*.go | ||
GOOS=linux GOARCH=ppc64le go build -o bin/jprq-linux-ppc64le cli/*.go | ||
GOOS=linux GOARCH=mips go build -o bin/jprq-linux-mips cli/*.go | ||
GOOS=linux GOARCH=mipsle go build -o bin/jprq-linux-mipsle cli/*.go | ||
GOOS=linux GOARCH=mips64 go build -o bin/jprq-linux-mips64 cli/*.go | ||
GOOS=linux GOARCH=mips64le go build -o bin/jprq-linux-mips64le cli/*.go | ||
GOOS=windows GOARCH=386 go build -o bin/jprq-windows-386.exe cli/*.go | ||
GOOS=windows GOARCH=amd64 go build -o bin/jprq-windows-amd64.exe cli/*.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters