summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 037ff7a146025e154df8d351dfa8c7a2eae3fcc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all:

tag=mytag

pull:
	docker pull andreacensi/act4e:spring2021

build: pull
	docker build  -t $(tag) .


check: build
	docker run -it --rm -v $(PWD)/out-results:/ACT4E/out-results $(tag) act4e-tests --module act4e_solutions


check-%: build
	docker run -it --rm -v $(PWD)/out-results:/ACT4E/out-results $(tag) act4e-tests --module act4e_solutions --group $*