summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..51c3aa6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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