From 3c28432044b40dbe9b9e451c97aedff5cc5adc66 Mon Sep 17 00:00:00 2001 From: Benedikt Heine Date: Mon, 26 Nov 2018 12:36:31 +0100 Subject: [PATCH] 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. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d8d3011..fae3b6e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,7 +24,7 @@ jobs: - checkout - run: make -j all dunstify - run: make -j test-valgrind - - run: make -j clean + - run: make clean - run: make -j test-coverage workflows: