We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6cb61 commit e92364aCopy full SHA for e92364a
Makefile
@@ -2,11 +2,13 @@ tag = clojure-web-benchmark
2
volumes = $(shell pwd)/artifacts:/app/artifacts
3
run = docker run -v $(volumes) -it $(tag)
4
5
+dirs:
6
+ mkdir -p artifacts/plots
7
docker-img:
8
docker build -t $(tag) .
-artifacts/results.csv: docker-img
9
+artifacts/results.csv: docker-img dirs
10
$(run) ./bench_all.sh
-plots: artifacts/results.csv docker-img
11
+plots: artifacts/results.csv docker-img dirs
12
$(run) python3 generate_plots.py
13
clean:
14
$(run) rm -rf artifacts/*
0 commit comments