1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-09 23:42:20 +08:00
Files
kubo/test/integration/Makefile
Lars Gierth e59dc8e49d docker: move to ipfs/go-ipfs image name
License: MIT
Signed-off-by: Lars Gierth <larsg@systemli.org>
2016-02-06 04:28:45 +01:00

34 lines
939 B
Makefile

# This Makefile provides a way to really simple way to run benchmarks in a
# docker environment.
IPFS_ROOT = ../..
CONTAINER = go-ipfs-bench
PACKAGE = integrationtest
PACKAGE_DIR = test/integration
BUILD_DIR = ./build/bench
CONTAINER_WORKING_DIR = /go
CPU_PROF_NAME = cpu.out
EXTRA_TEST_ARGS =
all: collect
collect: clean build_image run_profiler cp_pprof_from_container
cp_pprof_from_container:
docker cp $(CONTAINER):$(CONTAINER_WORKING_DIR)/$(CPU_PROF_NAME) $(BUILD_DIR)
docker cp $(CONTAINER):$(CONTAINER_WORKING_DIR)/$(PACKAGE).test $(BUILD_DIR)
build_image:
cd $(IPFS_ROOT) && docker build -t $(IMAGE) .
run_profiler:
docker run --name $(CONTAINER) -it --entrypoint go $(IMAGE) test ./src/github.com/ipfs/go-ipfs/$(PACKAGE_DIR) --cpuprofile=$(CPU_PROF_NAME) $(EXTRA_TEST_ARGS)
clean:
docker rm $(CONTAINER) || true
rm -rf $(BUILD_DIR)
analyze:
go tool pprof $(BUILD_DIR)/$(PACKAGE).test $(BUILD_DIR)/$(CPU_PROF_NAME)