Test on arm (#109)
This commit is contained in:
parent
1a59d03a0c
commit
b98a93f59f
5 changed files with 68 additions and 29 deletions
8
Makefile
8
Makefile
|
@ -22,10 +22,14 @@ run:
|
|||
## build: build binary.
|
||||
build: go-generate go-build
|
||||
|
||||
## test: execute all tests.
|
||||
test:
|
||||
## test-race: execute all tests with race enabled.
|
||||
test-race:
|
||||
CGO_ENABLED=1 go test -v --race -coverprofile=coverage.out ./...
|
||||
|
||||
## test: execute all tests
|
||||
test:
|
||||
CGO_ENABLED=1 go test -v -coverprofile=coverage.out ./...
|
||||
|
||||
## cross-compile: compile for other platforms using xgo.
|
||||
cross-compile: go-generate go-cross-compile
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue