-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
PureCloud Jenkins
committed
Jun 18, 2021
1 parent
7b5c40f
commit 13e2603
Showing
298 changed files
with
11,275 additions
and
3,394 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 |
---|---|---|
@@ -1,7 +1,19 @@ | ||
PACKAGE_NAME = platformclientv2 | ||
|
||
build: | ||
go build ./${PACKAGE_NAME} | ||
.PHONY: all test | ||
|
||
all: test build ## Build and run tests | ||
|
||
build: windows linux darwin ## Build binaries | ||
|
||
windows: | ||
env GOOS=windows GOARCH=amd64 go build -v ./${PACKAGE_NAME} | ||
|
||
linux: | ||
env GOOS=linux GOARCH=amd64 go build -v ./${PACKAGE_NAME} | ||
|
||
darwin: | ||
env GOOS=darwin GOARCH=amd64 go build -v ./${PACKAGE_NAME} | ||
|
||
test: | ||
go test ./${PACKAGE_NAME} -v -failfast |
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
Oops, something went wrong.