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

more verbose error logs

parent b8a521c8
No related branches found
No related tags found
No related merge requests found
Pipeline #65788 canceled
......@@ -16,4 +16,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