Skip to content

Commit 478d99b

Browse files
authored
Soothe the CI's ire (#1550)
* Add a bench.Dockerfile * Add a bench target to the makefile
1 parent 41cd949 commit 478d99b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@ preprocess:
1818
promote:
1919
dune promote
2020

21-
.PHONY: all build dev clean test promote
21+
bench:
22+
23+
.PHONY: all build dev clean test promote bench

bench.Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM ocaml/opam:ubuntu-20.04-ocaml-4.14
2+
3+
WORKDIR /app
4+
5+
RUN sudo apt-get update
6+
RUN sudo apt-get -y install jq
7+
COPY . .
8+
RUN sudo chown -R opam /app
9+
RUN eval $(opam env)

0 commit comments

Comments
 (0)