Do not use -j for clean

-j introduces race conditions, which lets the find -name ... -delete
commands fail, because those can't find specific files, which got
removed in the meantime.
This commit is contained in:
Benedikt Heine 2018-11-26 12:36:31 +01:00 committed by Nikos Tsipinakis
parent 394393fb6e
commit 3c28432044

View File

@ -24,7 +24,7 @@ jobs:
- checkout - checkout
- run: make -j all dunstify - run: make -j all dunstify
- run: make -j test-valgrind - run: make -j test-valgrind
- run: make -j clean - run: make clean
- run: make -j test-coverage - run: make -j test-coverage
workflows: workflows: