d111dd85db
* Upgrade Geth, Go and add CICD * update ipld-eth-server version * Track validation progress on a channel * Add integration tests * Setup validator config and update instructions to run tests locally * Update readme and tests * Update test to use v4 Infrastructure * Inlcude the env file * Fix config file write * Update DB configuration Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com> Co-authored-by: Ashwin Phatak <ashwinpphatak@gmail.com>
22 lines
400 B
Makefile
22 lines
400 B
Makefile
BIN = $(GOPATH)/bin
|
|
BASE = $(GOPATH)/src/$(PACKAGE)
|
|
PKGS = go list ./... | grep -v "^vendor/"
|
|
|
|
# Tools
|
|
|
|
.PHONY: integrationtest
|
|
integrationtest: | $(GOOSE)
|
|
go vet ./...
|
|
go fmt ./...
|
|
go run github.com/onsi/ginkgo/ginkgo -r test/ -v
|
|
|
|
.PHONY: test
|
|
test: | $(GOOSE)
|
|
go vet ./...
|
|
go fmt ./...
|
|
go run github.com/onsi/ginkgo/ginkgo -r validator_test/ -v
|
|
|
|
build:
|
|
go fmt ./...
|
|
GO111MODULE=on go build
|