Skip to content
Snippets Groups Projects
Commit b7be9663 authored by Ralf Jung's avatar Ralf Jung
Browse files

more verbose error logs

parent 4f3be7ed
Branches
Tags
No related merge requests found
Pipeline #65785 canceled
......@@ -12,4 +12,4 @@ $(EXERCISES): exercises/%.v: solutions/%.v gen-exercises.awk
# CI make target
ci: all
+@make -B exercises # force make (in case exercise files have been edited directly)
if [ -n "$$(git status --porcelain)" ]; then echo 'ERROR: Exercise files are not up-to-date with solutions. `git diff` after re-making them:'; git diff; exit 1; fi
if [ -n "$$(git status --porcelain)" ]; then echo 'ERROR: Exercise files are not up-to-date with solutions. `git diff` and `git status` after re-making them:'; git diff; git status; exit 1; fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment