build default task in Makefile
This commit is contained in:
parent
f53574789a
commit
2bc233b65b
6
Makefile
6
Makefile
|
@ -6,14 +6,14 @@ GO_PROJECT_PATH=github.com/status-im/$(PROJECT_NAME)
|
|||
BIN_NAME=status-hardware-wallet
|
||||
DOCKER_IMAGE_NAME=status-hardware-wallet-build
|
||||
|
||||
test:
|
||||
go test -v ./...
|
||||
|
||||
build:
|
||||
go build -i -o $(GOBIN)/$(BIN_NAME) -v ./cmd/status-hardware-wallet
|
||||
@echo "Compilation done."
|
||||
@echo "Run \"build/bin/$(BIN_NAME) -h\" to view available commands."
|
||||
|
||||
test:
|
||||
go test -v ./...
|
||||
|
||||
build-docker-image:
|
||||
docker build -t $(DOCKER_IMAGE_NAME) -f _assets/Dockerfile .
|
||||
|
||||
|
|
Loading…
Reference in New Issue