blob: eb3bfd6dfa78cdc8ffeddd2a8d8e0ef69fbfe870 (
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 --rm $(tag) act4e-tests --module act4e_solutions
check-%: build
docker run --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
|