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

tag=mytag

pull:
	docker pull  andreacensi/act4e:spring2021

build:
	docker build  -t $(tag) .


check: build
	docker run -it --rm $(tag) act4e-tests --module act4e_solutions


check-%: build
	docker run -it --rm $(tag) act4e-tests --module act4e_solutions --group $*

#
#check:
#	docker run -it --rm -v $(PWD):$(PWD):ro -w $(PWD) andreacensi/act4e:spring2021 act4e-tests --module act4e_solutions