From ccdbbb4716b240c3e5aa4c3389dcd92e142df22e Mon Sep 17 00:00:00 2001 From: "github-classroom[bot]" <66690702+github-classroom[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:42:46 +0000 Subject: Initial commit --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9c80517 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +all: + +tag=act4e-image + +build: + docker build -f .devcontainer/Dockerfile --build-arg DOCKER_REGISTRY=${DOCKER_REGISTRY} -t $(tag) . + +docker-check: build + docker run -it --rm -v $(PWD)/out-results:/ACT4E/out-results $(tag) \ + act4e-test --collections act4e_checks --module act4e_solutions + + +docker-check-%: build + docker run -it --rm -v $(PWD)/out-results:/ACT4E/out-results $(tag) \ + act4e-test --collections act4e_checks --module act4e_solutions --group $* + +# check: +# act4e-test --collections act4e_checks --module act4e_solutions + +# check-%: +# act4e-test --collections act4e_checks --module act4e_solutions --group $* \ No newline at end of file -- cgit v1.2.1