go-waku/Makefile

204 lines
6.6 KiB
Makefile
Raw Normal View History

2022-12-10 16:05:01 +00:00
CC_TEST_REPORTER_ID := c09efa7c67c269bfdc6f8a356785d8f7ed55c9dc2b9a1d07b78c384f55c4e527
GO_HTML_COV := ./coverage.html
GO_TEST_OUTFILE := ./c.out
CC_PREFIX := github.com/waku-org/go-waku
2022-03-21 23:15:53 +00:00
SHELL := bash # the shell used internally by Make
GOBIN ?= $(shell which go)
2022-04-14 15:41:44 +00:00
.PHONY: all build lint test coverage build-example static-library dynamic-library test-c test-c-template mobile-android mobile-ios
2022-03-21 23:15: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
TEST_REPORTER_URL := https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64
2022-03-21 23:15:53 +00:00
else ifeq ($(detected_OS),Windows)
# on Windows need `--export-all-symbols` flag else expected symbols will not be found in libgowaku.dll
GOBIN_SHARED_LIB_CGO_LDFLAGS := CGO_LDFLAGS="-Wl,--export-all-symbols"
GOBIN_SHARED_LIB_EXT := dll
else
TEST_REPORTER_URL := https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
2022-03-21 23:15:53 +00:00
GOBIN_SHARED_LIB_EXT := so
GOBIN_SHARED_LIB_CGO_LDFLAGS := CGO_LDFLAGS="-Wl,-soname,libgowaku.so.0"
endif
2021-04-13 18:54:15 +00:00
GIT_COMMIT = $(shell git rev-parse --short HEAD)
2022-06-19 21:47:39 +00:00
VERSION = $(shell cat ./VERSION)
2022-11-26 15:57:11 +00:00
UID := $(shell id -u)
GID := $(shell id -g)
BUILD_FLAGS ?= $(shell echo "-ldflags='\
2022-11-25 21:24:34 +00:00
-X github.com/waku-org/go-waku/waku/v2/node.GitCommit=$(GIT_COMMIT) \
-X github.com/waku-org/go-waku/waku/v2/node.Version=$(VERSION)'")
ANDROID_TARGET ?= 23
2022-08-12 12:44:13 +00:00
# control rln code compilation
ifeq ($(RLN), true)
BUILD_TAGS := gowaku_rln
endif
all: build
2021-04-13 18:54:15 +00:00
deps: lint-install
build-with-race:
${GOBIN} build -race -tags="${BUILD_TAGS}" $(BUILD_FLAGS) -o build/waku ./cmd/waku
2021-04-13 18:54:15 +00:00
build:
2022-11-26 15:57:11 +00:00
${GOBIN} build -tags="${BUILD_TAGS}" $(BUILD_FLAGS) -o build/waku ./cmd/waku
chat2:
pushd ./examples/chat2 && \
${GOBIN} build -tags="gowaku_rln" -o ../../build/chat2 . && \
popd
vendor:
${GOBIN} mod tidy
lint-install:
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
2023-04-03 13:48:07 +00:00
bash -s -- -b $(shell ${GOBIN} env GOPATH)/bin v1.52.2
lint:
@echo "lint"
2021-08-13 11:56:09 +00:00
@golangci-lint --exclude=SA1019 run ./... --deadline=5m
2021-10-13 12:48:29 +00:00
test-with-race:
${GOBIN} test -race -timeout 300s ./waku/...
2021-08-13 11:56:09 +00:00
test:
${GOBIN} test -timeout 300s ./waku/... -coverprofile=${GO_TEST_OUTFILE}.tmp
cat ${GO_TEST_OUTFILE}.tmp | grep -v ".pb.go" > ${GO_TEST_OUTFILE}
${GOBIN} tool cover -html=${GO_TEST_OUTFILE} -o ${GO_HTML_COV}
COVERAGE_FILE := ./coverage/cc-test-reporter
$(COVERAGE_FILE):
curl -sfL $(TEST_REPORTER_URL) --output ./coverage/cc-test-reporter #TODO: Support windows
chmod +x ./coverage/cc-test-reporter
_before-cc: $(COVERAGE_FILE)
CC_TEST_REPORTER_ID=${CC_TEST_REPORTER_ID} ./coverage/cc-test-reporter before-build
_after-cc:
GIT_COMMIT=$(git log | grep -m1 -oE '[^ ]+$') CC_TEST_REPORTER_ID=${CC_TEST_REPORTER_ID} ./coverage/cc-test-reporter after-build --prefix ${CC_PREFIX}
test-ci: _before-cc test _after-cc
generate:
${GOBIN} generate ./...
2022-07-05 21:28:34 +00:00
coverage:
${GOBIN} test -count 1 -coverprofile=coverage.out ./...
${GOBIN} tool cover -html=coverage.out -o=coverage.html
# build a docker image for the fleet
docker-image: DOCKER_IMAGE_TAG ?= latest
docker-image: DOCKER_IMAGE_NAME ?= statusteam/go-waku:$(DOCKER_IMAGE_TAG)
docker-image:
docker build --tag $(DOCKER_IMAGE_NAME) \
--build-arg="GIT_COMMIT=$(shell git rev-parse HEAD)" .
build-example-basic2:
cd examples/basic2 && $(MAKE)
build-example-chat-2:
cd examples/chat2 && $(MAKE)
build-example-filter2:
cd examples/filter2 && $(MAKE)
build-example-c-bindings:
cd examples/c-bindings && $(MAKE)
build-example: build-example-basic2 build-example-chat-2 build-example-filter2 build-example-c-bindings
2022-03-21 23:15:53 +00:00
static-library:
2022-03-21 23:15:53 +00:00
@echo "Building static library..."
${GOBIN} build \
2022-03-21 23:15:53 +00:00
-buildmode=c-archive \
2022-08-12 12:44:13 +00:00
-tags="${BUILD_TAGS}" \
2022-03-21 23:15:53 +00:00
-o ./build/lib/libgowaku.a \
2023-08-10 13:30:38 +00:00
./library/c/
2022-03-21 23:15:53 +00:00
@echo "Static library built:"
ifeq ($(detected_OS),Darwin)
sed -i '' -e "s/#include <cgo_utils.h>//gi" ./build/lib/libgowaku.h
else
2023-08-10 13:30:38 +00:00
sed -i "s/#include <cgo_utils.h>//gi" ./build/lib/libgowaku.h
endif
2022-03-21 23:15:53 +00:00
@ls -la ./build/lib/libgowaku.*
dynamic-library:
2022-03-21 23:15:53 +00:00
@echo "Building shared library..."
2023-08-10 13:30:38 +00:00
rm -f ./build/lib/libgowaku.$(GOBIN_SHARED_LIB_EXT)*
$(GOBIN_SHARED_LIB_CFLAGS) $(GOBIN_SHARED_LIB_CGO_LDFLAGS) ${GOBIN} build \
2022-03-21 23:15:53 +00:00
-buildmode=c-shared \
2022-08-12 12:44:13 +00:00
-tags="${BUILD_TAGS}" \
2022-03-21 23:15:53 +00:00
-o ./build/lib/libgowaku.$(GOBIN_SHARED_LIB_EXT) \
2023-08-10 13:30:38 +00:00
./library/c/
ifeq ($(detected_OS),Darwin)
sed -i '' -e "s/#include <cgo_utils.h>//gi" ./build/lib/libgowaku.h
else
2023-08-10 13:30:38 +00:00
sed -i "s/#include <cgo_utils.h>//gi" ./build/lib/libgowaku.h
endif
2022-03-21 23:15:53 +00:00
ifeq ($(detected_OS),Linux)
cd ./build/lib && \
mv ./libgowaku.$(GOBIN_SHARED_LIB_EXT) ./libgowaku.$(GOBIN_SHARED_LIB_EXT).0 && \
ln -s ./libgowaku.$(GOBIN_SHARED_LIB_EXT).0 ./libgowaku.$(GOBIN_SHARED_LIB_EXT)
endif
@echo "Shared library built:"
@ls -la ./build/lib/libgowaku.*
mobile-android:
@echo "Android target: ${ANDROID_TARGET} (override with ANDROID_TARGET var)"
gomobile init && \
${GOBIN} get -d golang.org/x/mobile/cmd/gomobile && \
2023-08-10 13:30:38 +00:00
gomobile bind -v -target=android -androidapi=${ANDROID_TARGET} -ldflags="-s -w" -tags="${BUILD_TAGS}" $(BUILD_FLAGS) -o ./build/lib/gowaku.aar ./library/mobile
@echo "Android library built:"
2022-04-14 15:41:44 +00:00
@ls -la ./build/lib/*.aar ./build/lib/*.jar
mobile-ios:
gomobile init && \
${GOBIN} get -d golang.org/x/mobile/cmd/gomobile && \
2023-08-10 13:30:38 +00:00
gomobile bind -target=ios -ldflags="-s -w" -tags="nowatchdog ${BUILD_TAGS}" $(BUILD_FLAGS) -o ./build/lib/Gowaku.xcframework ./library/mobile
2022-04-14 15:41:44 +00:00
@echo "IOS library built:"
@ls -la ./build/lib/*.xcframework
install-xtools:
${GOBIN} install golang.org/x/tools/...@v0.1.10
install-bindata:
${GOBIN} install github.com/kevinburke/go-bindata/go-bindata@v3.13.0
install-gomobile: install-xtools
${GOBIN} install golang.org/x/mobile/cmd/gomobile@v0.0.0-20220518205345-8578da9835fd
${GOBIN} install golang.org/x/mobile/cmd/gobind@v0.0.0-20220518205345-8578da9835fd
build-linux-pkg:
2022-11-26 15:57:11 +00:00
docker build --build-arg UID=${UID} --build-arg GID=${GID} -f ./scripts/linux/Dockerfile -t statusteam/gowaku-linux-pkgs:latest .
./scripts/linux/docker-run.sh
ls -la ./build/*.rpm ./build/*.deb
2022-08-10 13:03:25 +00:00
TEST_MNEMONIC="swim relax risk shy chimney please usual search industry board music segment"
start-ganache:
docker run -p 8545:8545 --name ganache-cli --rm -d trufflesuite/ganache-cli:latest -m ${TEST_MNEMONIC}
stop-ganache:
docker stop ganache-cli
2022-08-12 12:44:13 +00:00
test-onchain: BUILD_TAGS += include_onchain_tests
2022-08-10 17:10:23 +00:00
test-onchain:
${GOBIN} test -v -count 1 -tags="${BUILD_TAGS}" github.com/waku-org/go-waku/waku/v2/protocol/rln
2022-08-10 17:10:23 +00:00
test-onchain-with-race:
${GOBIN} test -race -v -count 1 -tags="${BUILD_TAGS}" github.com/waku-org/go-waku/waku/v2/protocol/rln