Skip to content

Commit

Permalink
reduce test run concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-ares authored and ripatel-fd committed Jul 20, 2023
1 parent 980a1c5 commit 517e015
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/make_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: make -j

- name: Run unit tests
run: make -k -j4 --output-sync=target run-unit-test
run: make -k -j2 --output-sync=target run-unit-test

make-test-asan:
runs-on: [self-hosted, Linux, X64]
Expand All @@ -36,7 +36,7 @@ jobs:
run: make -j

- name: Run unit tests
run: make -k -j4 --output-sync=target run-unit-test
run: make -k -j2 --output-sync=target run-unit-test

make-test-ubsan:
runs-on: [self-hosted, Linux, X64]
Expand All @@ -56,5 +56,5 @@ jobs:
run: make -j

- name: Run unit tests
run: make -k -j4 --output-sync=target run-unit-test
run: make -k -j2 --output-sync=target run-unit-test

0 comments on commit 517e015

Please sign in to comment.