-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dbe1d6
commit 45ce115
Showing
2 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
FROM coqorg/coq:8.17.1 | ||
|
||
COPY artifact-clean.zip artifact-clean.zip | ||
RUN eval $(opam env "--switch=${COMPILER}" --set-switch) | ||
RUN opam update -y | ||
RUN cd artifact-clean | ||
RUN opam install -y -j "${NJOBS}" ./coq-elpi | ||
RUN cd .. | ||
RUN opam install -y -j "${NJOBS}" . | ||
RUN unzip artifact-clean.zip | ||
RUN cd artifact-clean && make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
.PHONY: all | ||
|
||
all: | ||
opam install ./coq-elpi | ||
opam install ./trocq | ||
opam install -y ./coq-elpi | ||
opam install -y ./trocq | ||
|
||
clean: | ||
opam uninstall coq-elpi coq-trocq |