2019-02-01 17:02:52 +00:00
|
|
|
.PHONY: statusgo statusd-prune all test clean help
|
2016-07-20 06:42:19 +00:00
|
|
|
.PHONY: statusgo-android statusgo-ios
|
|
|
|
|
2021-01-26 17:12:24 +00:00
|
|
|
RELEASE_TAG := v$(shell cat VERSION)
|
2019-04-15 09:57:06 +00:00
|
|
|
RELEASE_BRANCH := develop
|
2019-04-12 10:50:14 +00:00
|
|
|
RELEASE_DIR := /tmp/release-$(RELEASE_TAG)
|
2018-11-05 14:02:16 +00:00
|
|
|
PRE_RELEASE := "1"
|
2019-04-12 10:50:14 +00:00
|
|
|
RELEASE_TYPE := $(shell if [ $(PRE_RELEASE) = "0" ] ; then echo release; else echo pre-release ; fi)
|
2019-06-13 10:24:28 +00:00
|
|
|
GOLANGCI_BINARY=golangci-lint
|
2018-11-05 14:02:16 +00:00
|
|
|
|
2020-08-06 21:11:53 +00:00
|
|
|
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
|
|
|
|
detected_OS := Windows
|
|
|
|
else
|
|
|
|
detected_OS := $(strip $(shell uname))
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(detected_OS),Darwin)
|
|
|
|
GOBIN_SHARED_LIB_EXT := dylib
|
2021-09-28 19:14:52 +00:00
|
|
|
ifeq ("$(shell sysctl -nq hw.optional.arm64)","1")
|
|
|
|
# Building on M1 is still not supported, so in the meantime we crosscompile to amd64
|
|
|
|
GOBIN_SHARED_LIB_CFLAGS=CGO_ENABLED=1 GOOS=darwin GOARCH=amd64
|
|
|
|
endif
|
2020-08-06 21:11:53 +00:00
|
|
|
else ifeq ($(detected_OS),Windows)
|
|
|
|
# on Windows need `--export-all-symbols` flag else expected symbols will not be found in libstatus.dll
|
|
|
|
GOBIN_SHARED_LIB_CGO_LDFLAGS := CGO_LDFLAGS="-Wl,--export-all-symbols"
|
|
|
|
GOBIN_SHARED_LIB_EXT := dll
|
|
|
|
else
|
|
|
|
GOBIN_SHARED_LIB_EXT := so
|
2021-09-19 14:25:47 +00:00
|
|
|
GOBIN_SHARED_LIB_CGO_LDFLAGS := CGO_LDFLAGS="-Wl,-soname,libstatus.so.0"
|
2020-08-06 21:11:53 +00:00
|
|
|
endif
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
help: ##@other Show this help
|
|
|
|
@perl -e '$(HELP_FUN)' $(MAKEFILE_LIST)
|
|
|
|
|
2018-08-24 10:25:07 +00:00
|
|
|
CGO_CFLAGS = -I/$(JAVA_HOME)/include -I/$(JAVA_HOME)/include/darwin
|
|
|
|
GOBIN = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))build/bin
|
2020-04-06 07:54:06 +00:00
|
|
|
GOPATH ?= $(HOME)/go
|
2018-11-20 10:13:42 +00:00
|
|
|
GIT_COMMIT = $(shell git rev-parse --short HEAD)
|
2021-02-11 13:47:11 +00:00
|
|
|
AUTHOR ?= $(shell git config user.email || echo $$USER)
|
2018-03-01 16:18:12 +00:00
|
|
|
|
2018-12-14 11:16:45 +00:00
|
|
|
ENABLE_METRICS ?= true
|
2020-03-10 12:40:35 +00:00
|
|
|
BUILD_FLAGS ?= $(shell echo "-ldflags='\
|
2021-01-26 17:12:24 +00:00
|
|
|
-X github.com/status-im/status-go/params.Version=$(RELEASE_TAG:v%=%) \
|
2018-11-20 10:13:42 +00:00
|
|
|
-X github.com/status-im/status-go/params.GitCommit=$(GIT_COMMIT) \
|
2018-11-14 07:03:58 +00:00
|
|
|
-X github.com/status-im/status-go/vendor/github.com/ethereum/go-ethereum/metrics.EnabledStr=$(ENABLE_METRICS)'")
|
2020-03-10 12:40:35 +00:00
|
|
|
BUILD_FLAGS_MOBILE ?= $(shell echo "-ldflags='\
|
2021-01-26 17:12:24 +00:00
|
|
|
-X github.com/status-im/status-go/params.Version=$(RELEASE_TAG:v%=%) \
|
2019-10-04 15:21:24 +00:00
|
|
|
-X github.com/status-im/status-go/params.GitCommit=$(GIT_COMMIT)'")
|
2018-03-15 11:36:28 +00:00
|
|
|
|
|
|
|
networkid ?= StatusChain
|
2018-03-27 12:38:41 +00:00
|
|
|
gotest_extraflags =
|
2018-03-15 11:36:28 +00:00
|
|
|
|
2018-02-26 18:36:04 +00:00
|
|
|
DOCKER_IMAGE_NAME ?= statusteam/status-go
|
2018-05-18 13:43:07 +00:00
|
|
|
BOOTNODE_IMAGE_NAME ?= statusteam/bootnode
|
2018-06-07 10:30:18 +00:00
|
|
|
STATUSD_PRUNE_IMAGE_NAME ?= statusteam/statusd-prune
|
2018-01-03 18:50:19 +00:00
|
|
|
|
2018-11-20 10:13:42 +00:00
|
|
|
DOCKER_IMAGE_CUSTOM_TAG ?= $(RELEASE_TAG)
|
2018-07-02 16:27:59 +00:00
|
|
|
|
2018-02-19 15:32:58 +00:00
|
|
|
DOCKER_TEST_WORKDIR = /go/src/github.com/status-im/status-go/
|
2019-10-05 14:27:48 +00:00
|
|
|
DOCKER_TEST_IMAGE = golang:1.13
|
2018-02-19 15:32:58 +00:00
|
|
|
|
2017-10-03 11:54:19 +00:00
|
|
|
# This is a code for automatic help generator.
|
|
|
|
# It supports ANSI colors and categories.
|
|
|
|
# To add new item into help output, simply add comments
|
|
|
|
# starting with '##'. To add category, use @category.
|
2018-01-09 17:46:54 +00:00
|
|
|
GREEN := $(shell echo "\e[32m")
|
|
|
|
WHITE := $(shell echo "\e[37m")
|
|
|
|
YELLOW := $(shell echo "\e[33m")
|
|
|
|
RESET := $(shell echo "\e[0m")
|
2017-10-03 11:54:19 +00:00
|
|
|
HELP_FUN = \
|
|
|
|
%help; \
|
2018-03-27 15:07:06 +00:00
|
|
|
while(<>) { push @{$$help{$$2 // 'options'}}, [$$1, $$3] if /^([a-zA-Z0-9\-]+)\s*:.*\#\#(?:@([a-zA-Z\-]+))?\s(.*)$$/ }; \
|
2017-10-03 11:54:19 +00:00
|
|
|
print "Usage: make [target]\n\n"; \
|
|
|
|
for (sort keys %help) { \
|
|
|
|
print "${WHITE}$$_:${RESET}\n"; \
|
|
|
|
for (@{$$help{$$_}}) { \
|
|
|
|
$$sep = " " x (32 - length $$_->[0]); \
|
|
|
|
print " ${YELLOW}$$_->[0]${RESET}$$sep${GREEN}$$_->[1]${RESET}\n"; \
|
|
|
|
}; \
|
|
|
|
print "\n"; \
|
|
|
|
}
|
|
|
|
|
|
|
|
statusgo: ##@build Build status-go as statusd server
|
2021-09-13 09:01:29 +00:00
|
|
|
go build -mod=vendor -i -v \
|
|
|
|
-tags '$(BUILD_TAGS)' $(BUILD_FLAGS) \
|
|
|
|
-o $(GOBIN)/statusd ./cmd/statusd
|
2018-02-02 15:54:14 +00:00
|
|
|
@echo "Compilation done."
|
|
|
|
@echo "Run \"build/bin/statusd -h\" to view available commands."
|
2017-11-03 22:07:13 +00:00
|
|
|
|
2018-06-07 10:30:18 +00:00
|
|
|
statusd-prune: ##@statusd-prune Build statusd-prune
|
|
|
|
go build -o $(GOBIN)/statusd-prune -v ./cmd/statusd-prune
|
|
|
|
@echo "Compilation done."
|
|
|
|
@echo "Run \"build/bin/statusd-prune -h\" to view available commands."
|
|
|
|
|
|
|
|
statusd-prune-docker-image: ##@statusd-prune Build statusd-prune docker image
|
2018-08-24 10:25:07 +00:00
|
|
|
@echo "Building docker image for ststusd-prune..."
|
|
|
|
docker build --file _assets/build/Dockerfile-prune . \
|
|
|
|
--label "commit=$(GIT_COMMIT)" \
|
|
|
|
--label "author=$(AUTHOR)" \
|
|
|
|
-t $(BOOTNODE_IMAGE_NAME):$(DOCKER_IMAGE_CUSTOM_TAG) \
|
|
|
|
-t $(STATUSD_PRUNE_IMAGE_NAME):latest
|
2018-06-07 10:30:18 +00:00
|
|
|
|
2018-05-18 13:43:07 +00:00
|
|
|
bootnode: ##@build Build discovery v5 bootnode using status-go deps
|
2021-09-13 09:01:29 +00:00
|
|
|
go build -i -v \
|
|
|
|
-tags '$(BUILD_TAGS)' $(BUILD_FLAGS) \
|
|
|
|
-o $(GOBIN)/bootnode ./cmd/bootnode/
|
2018-05-18 13:43:07 +00:00
|
|
|
@echo "Compilation done."
|
|
|
|
|
2018-09-20 11:25:32 +00:00
|
|
|
node-canary: ##@build Build P2P node canary using status-go deps
|
2021-09-13 09:01:29 +00:00
|
|
|
go build -i -v \
|
|
|
|
-tags '$(BUILD_TAGS)' $(BUILD_FLAGS) \
|
|
|
|
-o $(GOBIN)/node-canary ./cmd/node-canary/
|
2018-07-12 14:50:49 +00:00
|
|
|
@echo "Compilation done."
|
|
|
|
|
2016-07-20 06:42:19 +00:00
|
|
|
statusgo-cross: statusgo-android statusgo-ios
|
2016-10-13 11:46:54 +00:00
|
|
|
@echo "Full cross compilation done."
|
2016-07-20 06:42:19 +00:00
|
|
|
@ls -ld $(GOBIN)/statusgo-*
|
|
|
|
|
2019-02-01 17:02:52 +00:00
|
|
|
statusgo-android: ##@cross-compile Build status-go for Android
|
|
|
|
@echo "Building status-go for Android..."
|
2021-09-13 09:04:00 +00:00
|
|
|
export GO111MODULE=off; \
|
|
|
|
gomobile init; \
|
2021-09-13 09:01:29 +00:00
|
|
|
gomobile bind -v \
|
|
|
|
-target=android -ldflags="-s -w" \
|
|
|
|
$(BUILD_FLAGS_MOBILE) \
|
|
|
|
-o build/bin/statusgo.aar \
|
|
|
|
github.com/status-im/status-go/mobile
|
2019-02-01 17:02:52 +00:00
|
|
|
@echo "Android cross compilation done in build/bin/statusgo.aar"
|
|
|
|
|
|
|
|
statusgo-ios: ##@cross-compile Build status-go for iOS
|
|
|
|
@echo "Building status-go for iOS..."
|
2021-09-13 09:04:00 +00:00
|
|
|
export GO111MODULE=off; \
|
|
|
|
gomobile init; \
|
2021-09-13 09:01:29 +00:00
|
|
|
gomobile bind -v \
|
|
|
|
-target=ios -ldflags="-s -w" \
|
|
|
|
$(BUILD_FLAGS_MOBILE) \
|
|
|
|
-o build/bin/Statusgo.framework \
|
|
|
|
github.com/status-im/status-go/mobile
|
2019-02-01 17:02:52 +00:00
|
|
|
@echo "iOS framework cross compilation done in build/bin/Statusgo.framework"
|
|
|
|
|
2017-11-29 21:30:16 +00:00
|
|
|
statusgo-library: ##@cross-compile Build status-go as static library for current platform
|
2020-06-03 06:22:05 +00:00
|
|
|
## cmd/library/README.md explains the magic incantation behind this
|
2020-06-02 13:34:21 +00:00
|
|
|
mkdir -p $(GOBIN)/statusgo-lib
|
2020-06-03 06:22:05 +00:00
|
|
|
go run cmd/library/*.go > $(GOBIN)/statusgo-lib/main.go
|
2017-11-29 21:30:16 +00:00
|
|
|
@echo "Building static library..."
|
2021-09-13 09:01:29 +00:00
|
|
|
go build \
|
|
|
|
$(BUILD_FLAGS) \
|
|
|
|
-buildmode=c-archive \
|
|
|
|
-o $(GOBIN)/libstatus.a \
|
|
|
|
$(GOBIN)/statusgo-lib
|
2017-11-29 21:30:16 +00:00
|
|
|
@echo "Static library built:"
|
|
|
|
@ls -la $(GOBIN)/libstatus.*
|
|
|
|
|
2020-08-06 21:11:53 +00:00
|
|
|
statusgo-shared-library: ##@cross-compile Build status-go as shared library for current platform
|
|
|
|
## cmd/library/README.md explains the magic incantation behind this
|
|
|
|
mkdir -p $(GOBIN)/statusgo-lib
|
|
|
|
go run cmd/library/*.go > $(GOBIN)/statusgo-lib/main.go
|
|
|
|
@echo "Building shared library..."
|
2021-09-28 19:14:52 +00:00
|
|
|
$(GOBIN_SHARED_LIB_CFLAGS) $(GOBIN_SHARED_LIB_CGO_LDFLAGS) go build \
|
2021-09-13 09:01:29 +00:00
|
|
|
$(BUILD_FLAGS) \
|
|
|
|
-buildmode=c-shared \
|
|
|
|
-o $(GOBIN)/libstatus.$(GOBIN_SHARED_LIB_EXT) \
|
|
|
|
$(GOBIN)/statusgo-lib
|
2021-09-19 14:25:47 +00:00
|
|
|
ifeq ($(detected_OS),Linux)
|
|
|
|
cd $(GOBIN) && \
|
|
|
|
ls -lah . && \
|
|
|
|
mv ./libstatus.$(GOBIN_SHARED_LIB_EXT) ./libstatus.$(GOBIN_SHARED_LIB_EXT).0 && \
|
|
|
|
ln -s ./libstatus.$(GOBIN_SHARED_LIB_EXT).0 ./libstatus.$(GOBIN_SHARED_LIB_EXT)
|
|
|
|
endif
|
2020-08-06 21:11:53 +00:00
|
|
|
@echo "Shared library built:"
|
|
|
|
@ls -la $(GOBIN)/libstatus.*
|
|
|
|
|
2018-01-03 18:50:19 +00:00
|
|
|
docker-image: ##@docker Build docker image (use DOCKER_IMAGE_NAME to set the image name)
|
|
|
|
@echo "Building docker image..."
|
2018-07-02 16:27:59 +00:00
|
|
|
docker build --file _assets/build/Dockerfile . \
|
|
|
|
--build-arg "build_tags=$(BUILD_TAGS)" \
|
|
|
|
--build-arg "build_flags=$(BUILD_FLAGS)" \
|
2018-08-24 10:25:07 +00:00
|
|
|
--label "commit=$(GIT_COMMIT)" \
|
|
|
|
--label "author=$(AUTHOR)" \
|
2021-01-26 17:12:24 +00:00
|
|
|
-t $(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_CUSTOM_TAG) \
|
2018-07-02 16:27:59 +00:00
|
|
|
-t $(DOCKER_IMAGE_NAME):latest
|
2018-02-12 20:56:53 +00:00
|
|
|
|
2018-05-18 13:43:07 +00:00
|
|
|
bootnode-image:
|
|
|
|
@echo "Building docker image for bootnode..."
|
2018-07-02 16:27:59 +00:00
|
|
|
docker build --file _assets/build/Dockerfile-bootnode . \
|
2018-08-24 03:17:32 +00:00
|
|
|
--build-arg "build_tags=$(BUILD_TAGS)" \
|
|
|
|
--build-arg "build_flags=$(BUILD_FLAGS)" \
|
2018-08-24 10:25:07 +00:00
|
|
|
--label "commit=$(GIT_COMMIT)" \
|
|
|
|
--label "author=$(AUTHOR)" \
|
2021-01-26 17:12:24 +00:00
|
|
|
-t $(BOOTNODE_IMAGE_NAME):$(DOCKER_IMAGE_CUSTOM_TAG) \
|
2018-07-02 16:27:59 +00:00
|
|
|
-t $(BOOTNODE_IMAGE_NAME):latest
|
|
|
|
|
|
|
|
push-docker-images: docker-image bootnode-image
|
|
|
|
docker push $(BOOTNODE_IMAGE_NAME):$(DOCKER_IMAGE_CUSTOM_TAG)
|
|
|
|
docker push $(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_CUSTOM_TAG)
|
|
|
|
|
2019-03-25 10:35:38 +00:00
|
|
|
clean-docker-images:
|
|
|
|
docker rmi -f $(shell docker image ls --filter="reference=$(DOCKER_IMAGE_NAME)" --quiet)
|
|
|
|
|
2018-08-02 17:16:39 +00:00
|
|
|
# See https://www.gnu.org/software/make/manual/html_node/Target_002dspecific.html to understand this magic.
|
|
|
|
push-docker-images-latest: GIT_BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
|
|
|
|
push-docker-images-latest: GIT_LOCAL = $(shell git rev-parse @)
|
|
|
|
push-docker-images-latest: GIT_REMOTE = $(shell git fetch -q && git rev-parse remotes/origin/develop || echo 'NO_DEVELOP')
|
2018-07-02 16:27:59 +00:00
|
|
|
push-docker-images-latest: docker-image bootnode-image
|
2018-08-02 17:16:39 +00:00
|
|
|
@echo "Pushing latest docker images..."
|
|
|
|
@echo "Checking git branch..."
|
2018-07-02 16:27:59 +00:00
|
|
|
ifneq ("$(GIT_BRANCH)", "develop")
|
2018-08-02 17:16:39 +00:00
|
|
|
$(error You should only use develop branch to push the latest tag!)
|
2018-07-02 16:27:59 +00:00
|
|
|
exit 1
|
|
|
|
endif
|
|
|
|
ifneq ("$(GIT_LOCAL)", "$(GIT_REMOTE)")
|
2018-08-02 17:16:39 +00:00
|
|
|
$(error The local git commit does not match the remote origin!)
|
2018-07-02 16:27:59 +00:00
|
|
|
exit 1
|
|
|
|
endif
|
2021-01-26 17:12:24 +00:00
|
|
|
docker push $(BOOTNODE_IMAGE_NAME):$(DOCKER_IMAGE_CUSTOM_TAG)
|
|
|
|
docker push $(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_CUSTOM_TAG)
|
2018-01-03 18:50:19 +00:00
|
|
|
|
2021-09-13 09:04:00 +00:00
|
|
|
setup: ##@setup Install all tools
|
|
|
|
setup: setup-build setup-dev tidy
|
|
|
|
|
|
|
|
setup-dev: ##@setup Install all necessary tools for development
|
|
|
|
setup-dev: install-lint install-mock install-modvendor install-protobuf tidy install-os-deps
|
|
|
|
|
|
|
|
setup-build: ##@setup Install all necessary build tools
|
|
|
|
setup-build: install-lint install-release install-gomobile
|
|
|
|
|
|
|
|
install-os-deps: ##@install Operating System Dependencies
|
2018-09-24 18:07:34 +00:00
|
|
|
_assets/scripts/install_deps.sh
|
|
|
|
|
2021-09-13 09:04:00 +00:00
|
|
|
install-gomobile: install-xtools
|
|
|
|
install-gomobile: ##@install Go Mobile Build Tools
|
|
|
|
GO111MODULE=on go install golang.org/x/mobile/cmd/...@5d9a3325
|
|
|
|
GO111MODULE=on go mod download golang.org/x/exp@ec7cb31e
|
|
|
|
GO111MODULE=off go get -d golang.org/x/mobile/cmd/gobind
|
|
|
|
|
|
|
|
install-lint: ##@install Install Linting Tools
|
|
|
|
GO111MODULE=on go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.33.0
|
|
|
|
|
|
|
|
install-mock: ##@install Install Module Mocking Tools
|
|
|
|
GO111MODULE=on go install github.com/golang/mock/mockgen@v1.4.4
|
|
|
|
|
|
|
|
install-modvendor: ##@install Install Module Vendoring Tool
|
|
|
|
GO111MODULE=on go install github.com/goware/modvendor@v0.4.0
|
|
|
|
|
|
|
|
install-protobuf: ##@install Install Protobuf Generation Tools
|
|
|
|
GO111MODULE=on go install github.com/kevinburke/go-bindata/go-bindata@v3.13.0
|
|
|
|
GO111MODULE=on go install github.com/golang/protobuf/protoc-gen-go@v1.3.4
|
2019-02-01 17:02:52 +00:00
|
|
|
|
2021-09-13 09:04:00 +00:00
|
|
|
install-release: ##@install Install Github Release Tools
|
|
|
|
GO111MODULE=on go install github.com/c4milo/github-release@v1.1.0
|
2019-02-01 17:02:52 +00:00
|
|
|
|
2021-09-13 09:04:00 +00:00
|
|
|
install-xtools: ##@install Install Miscellaneous Go Tools
|
|
|
|
GO111MODULE=on go install golang.org/x/tools/go/packages/...@v0.1.5
|
2018-09-13 16:31:29 +00:00
|
|
|
|
|
|
|
generate: ##@other Regenerate assets and other auto-generated stuff
|
2020-05-13 13:09:27 +00:00
|
|
|
go generate ./static ./static/mailserver_db_migrations ./t ./multiaccounts/... ./appdatabase/... ./protocol/...
|
2018-09-24 18:07:34 +00:00
|
|
|
|
2018-11-05 14:02:16 +00:00
|
|
|
prepare-release: clean-release
|
2019-04-12 10:50:14 +00:00
|
|
|
mkdir -p $(RELEASE_DIR)
|
|
|
|
mv build/bin/statusgo.aar $(RELEASE_DIR)/status-go-android.aar
|
2019-02-01 17:02:52 +00:00
|
|
|
zip -r build/bin/Statusgo.framework.zip build/bin/Statusgo.framework
|
2019-04-12 10:50:14 +00:00
|
|
|
mv build/bin/Statusgo.framework.zip $(RELEASE_DIR)/status-go-ios.zip
|
|
|
|
zip -r $(RELEASE_DIR)/status-go-desktop.zip . -x *.git*
|
2018-12-06 12:22:18 +00:00
|
|
|
${MAKE} clean
|
2018-11-05 14:02:16 +00:00
|
|
|
|
|
|
|
clean-release:
|
2019-04-12 10:50:14 +00:00
|
|
|
rm -rf $(RELEASE_DIR)
|
2018-11-05 14:02:16 +00:00
|
|
|
|
2020-01-07 13:53:13 +00:00
|
|
|
lint-fix:
|
2020-02-10 16:52:43 +00:00
|
|
|
find . \
|
|
|
|
-name '*.go' \
|
|
|
|
-and -not -name '*.pb.go' \
|
|
|
|
-and -not -name 'bindata*' \
|
|
|
|
-and -not -name 'migrations.go' \
|
|
|
|
-and -not -wholename '*/vendor/*' \
|
|
|
|
-exec goimports \
|
|
|
|
-local 'github.com/ethereum/go-ethereum,github.com/status-im/status-go,github.com/status-im/markdown' \
|
|
|
|
-w {} \;
|
2020-01-02 09:10:19 +00:00
|
|
|
$(MAKE) vendor
|
2019-12-30 10:29:04 +00:00
|
|
|
|
2017-10-11 14:20:51 +00:00
|
|
|
mock: ##@other Regenerate mocks
|
2018-06-08 11:29:50 +00:00
|
|
|
mockgen -package=fake -destination=transactions/fake/mock.go -source=transactions/fake/txservice.go
|
2018-06-25 13:27:17 +00:00
|
|
|
mockgen -package=status -destination=services/status/account_mock.go -source=services/status/service.go
|
2018-07-16 07:40:40 +00:00
|
|
|
mockgen -package=peer -destination=services/peer/discoverer_mock.go -source=services/peer/service.go
|
2017-09-04 12:56:58 +00:00
|
|
|
|
2018-02-19 15:32:58 +00:00
|
|
|
docker-test: ##@tests Run tests in a docker container with golang.
|
|
|
|
docker run --privileged --rm -it -v "$(shell pwd):$(DOCKER_TEST_WORKDIR)" -w "$(DOCKER_TEST_WORKDIR)" $(DOCKER_TEST_IMAGE) go test ${ARGS}
|
|
|
|
|
2018-08-02 17:16:39 +00:00
|
|
|
test: test-unit ##@tests Run basic, short tests during development
|
2017-10-20 10:10:28 +00:00
|
|
|
|
2018-08-02 17:16:39 +00:00
|
|
|
test-unit: UNIT_TEST_PACKAGES = $(shell go list ./... | \
|
|
|
|
grep -v /vendor | \
|
|
|
|
grep -v /t/e2e | \
|
|
|
|
grep -v /t/benchmarks | \
|
2019-05-07 07:05:38 +00:00
|
|
|
grep -v /transactions/fake )
|
2017-10-20 10:10:28 +00:00
|
|
|
test-unit: ##@tests Run unit and integration tests
|
2020-10-08 13:53:58 +00:00
|
|
|
go test -v -failfast $(UNIT_TEST_PACKAGES) $(gotest_extraflags)
|
2020-02-11 16:59:21 +00:00
|
|
|
cd ./waku && go test -v -failfast ./... $(gotest_extraflags)
|
2017-10-11 14:20:51 +00:00
|
|
|
|
2018-03-27 12:38:41 +00:00
|
|
|
test-unit-race: gotest_extraflags=-race
|
|
|
|
test-unit-race: test-unit ##@tests Run unit and integration tests with -race flag
|
2017-10-11 14:20:51 +00:00
|
|
|
|
|
|
|
test-e2e: ##@tests Run e2e tests
|
|
|
|
# order: reliability then alphabetical
|
2017-10-23 11:05:52 +00:00
|
|
|
# TODO(tiabc): make a single command out of them adding `-p 1` flag.
|
2018-03-27 12:38:41 +00:00
|
|
|
|
2018-03-27 15:07:06 +00:00
|
|
|
test-e2e-race: gotest_extraflags=-race
|
|
|
|
test-e2e-race: test-e2e ##@tests Run e2e tests with -race flag
|
2017-10-11 14:20:51 +00:00
|
|
|
|
2018-11-19 17:12:59 +00:00
|
|
|
canary-test: node-canary
|
2019-02-01 17:02:52 +00:00
|
|
|
# TODO: uncomment that!
|
2020-02-20 13:05:05 +00:00
|
|
|
#_assets/scripts/canary_test_mailservers.sh ./config/cli/fleet-eth.prod.json
|
2018-11-19 17:12:59 +00:00
|
|
|
|
2018-01-24 08:25:28 +00:00
|
|
|
lint:
|
|
|
|
@echo "lint"
|
2021-06-16 20:19:45 +00:00
|
|
|
@golangci-lint --exclude=SA1019 run ./... --deadline=5m
|
2018-01-24 08:25:28 +00:00
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
ci: lint canary-test test-unit test-e2e ##@tests Run all linters and tests at once
|
2016-12-07 21:07:08 +00:00
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
ci-race: lint canary-test test-unit test-e2e-race ##@tests Run all linters and tests at once + race
|
2019-02-07 12:12:35 +00:00
|
|
|
|
2017-10-03 11:54:19 +00:00
|
|
|
clean: ##@other Cleanup
|
2021-05-14 09:26:16 +00:00
|
|
|
rm -fr build/bin/* mailserver-config.json
|
2019-11-27 12:22:23 +00:00
|
|
|
git clean -xf
|
2017-11-07 17:46:11 +00:00
|
|
|
|
|
|
|
deep-clean: clean
|
2017-11-21 14:40:52 +00:00
|
|
|
rm -Rdf .ethereumtest/StatusChain
|
2018-02-01 17:14:51 +00:00
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
tidy:
|
|
|
|
go mod tidy
|
2018-02-01 17:14:51 +00:00
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
vendor:
|
|
|
|
go mod tidy
|
|
|
|
go mod vendor
|
|
|
|
modvendor -copy="**/*.c **/*.h" -v
|
|
|
|
.PHONY: vendor
|
2018-02-09 13:38:18 +00:00
|
|
|
|
2018-09-14 08:46:34 +00:00
|
|
|
update-fleet-config: ##@other Update fleets configuration from fleets.status.im
|
2020-02-20 13:05:05 +00:00
|
|
|
./_assets/scripts/update-fleet-config.sh
|
2018-09-14 08:46:34 +00:00
|
|
|
@echo "Updating static assets..."
|
|
|
|
@go generate ./static
|
|
|
|
@echo "Done"
|
2019-02-06 16:47:01 +00:00
|
|
|
|
2019-11-28 22:52:38 +00:00
|
|
|
run-bootnode-systemd: ##@Easy way to run a bootnode locally with Docker Compose
|
2019-12-09 23:06:44 +00:00
|
|
|
@cd _assets/systemd/bootnode && $(MAKE)
|
2019-11-28 22:52:38 +00:00
|
|
|
|
2019-09-16 09:38:33 +00:00
|
|
|
run-bootnode-docker: ##@Easy way to run a bootnode locally with Docker Compose
|
2019-12-09 23:06:44 +00:00
|
|
|
@cd _assets/compose/bootnode && $(MAKE)
|
2019-03-21 15:46:02 +00:00
|
|
|
|
2019-11-15 09:35:26 +00:00
|
|
|
run-mailserver-systemd: ##@Easy Run a mailserver locally with systemd
|
2019-12-09 23:06:44 +00:00
|
|
|
@cd _assets/systemd/mailserver && $(MAKE)
|
2019-09-16 09:38:33 +00:00
|
|
|
|
2019-11-15 09:35:26 +00:00
|
|
|
run-mailserver-docker: ##@Easy Run a mailserver locally with Docker Compose
|
2019-12-09 23:06:44 +00:00
|
|
|
@cd _assets/compose/mailserver && $(MAKE)
|
|
|
|
|
|
|
|
clean-bootnode-systemd: ##@Easy Clean your systemd service for running a bootnode
|
|
|
|
@cd _assets/systemd/bootnode && $(MAKE) clean
|
|
|
|
|
|
|
|
clean-bootnode-docker: ##@Easy Clean your Docker container running a bootnode
|
|
|
|
@cd _assets/compose/bootnode && $(MAKE) clean
|
2019-11-15 09:35:26 +00:00
|
|
|
|
|
|
|
clean-mailserver-systemd: ##@Easy Clean your systemd service for running a mailserver
|
2019-12-09 23:06:44 +00:00
|
|
|
@cd _assets/systemd/mailserver && $(MAKE) clean
|
2019-11-15 09:35:26 +00:00
|
|
|
|
|
|
|
clean-mailserver-docker: ##@Easy Clean your Docker container running a mailserver
|
2019-12-09 23:06:44 +00:00
|
|
|
@cd _assets/compose/mailserver && $(MAKE) clean
|
2021-04-15 09:44:26 +00:00
|
|
|
|
2021-05-28 11:05:01 +00:00
|
|
|
migration: DEFAULT_MIGRATION_PATH := appdatabase/migrations/sql
|
2021-04-15 09:44:26 +00:00
|
|
|
migration:
|
2021-05-28 11:05:01 +00:00
|
|
|
touch $(DEFAULT_MIGRATION_PATH)/$(shell date +%s)_$(D).up.sql
|
2021-04-16 13:14:21 +00:00
|
|
|
|
|
|
|
migration-protocol: DEFAULT_PROTOCOL_PATH := protocol/migrations/sqlite
|
|
|
|
migration-protocol:
|
|
|
|
touch $(DEFAULT_PROTOCOL_PATH)/$(shell date +%s)_$(D).up.sql
|