Skip to content

Commit

Permalink
add -j2 to make test invocations
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdudz committed May 16, 2024
1 parent 86e5acd commit 2c4d4d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: make -j2 lib QUIET=1
- name: Run the regression tests.
shell: bash
run: make test QUIET=1
run: make -j2 test QUIET=1
- name: Test that the samples can be built.
run: make -C samples platforms
- name: Test that the targettest programs can be built.
Expand Down Expand Up @@ -89,4 +89,4 @@ jobs:

- name: Run the regression tests (make test)
shell: cmd
run: make test QUIET=1 SHELL=cmd
run: make -j2 test QUIET=1 SHELL=cmd
2 changes: 1 addition & 1 deletion .github/workflows/snapshot-on-push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: make -j2 lib QUIET=1
- name: Run the regression tests.
shell: bash
run: make test QUIET=1
run: make -j2 test QUIET=1
- name: Test that the samples can be built.
shell: bash
run: make -j2 samples
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-test-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Run the regression tests (make test)
if: steps.check-sha.outputs.cache-hit != 'true'
shell: cmd
run: make test QUIET=1 SHELL=cmd
run: make -j2 test QUIET=1 SHELL=cmd

- name: Test that the samples can be built (make samples)
if: steps.check-sha.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 2c4d4d3

Please sign in to comment.