Skip to content

Commit f556044

Browse files
authored
Merge pull request #1343 from bynect/fix-make-race
Prevent race condition in workflows
2 parents a6e1d4e + c5ceb03 commit f556044

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: ./test/test-install.sh
6060

6161
- name: valgrind memleaks
62-
run: make -j clean test-valgrind
62+
run: make clean && make -j test-valgrind
6363

6464
runs-on: ubuntu-latest
6565
container:
@@ -83,7 +83,7 @@ jobs:
8383
run: git config --global --add safe.directory ${GITHUB_WORKSPACE}
8484

8585
- name: coverage
86-
run: make clean test-coverage
86+
run: make clean && make -j test-coverage
8787

8888
- name: Generate coverage report
8989
run: lcov -c -d . -o lcov.info

0 commit comments

Comments
 (0)