Skip to content

Commit 2c4d4d3

Browse files
committed
add -j2 to make test invocations
1 parent 86e5acd commit 2c4d4d3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-on-pull-request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: make -j2 lib QUIET=1
3636
- name: Run the regression tests.
3737
shell: bash
38-
run: make test QUIET=1
38+
run: make -j2 test QUIET=1
3939
- name: Test that the samples can be built.
4040
run: make -C samples platforms
4141
- name: Test that the targettest programs can be built.
@@ -89,4 +89,4 @@ jobs:
8989

9090
- name: Run the regression tests (make test)
9191
shell: cmd
92-
run: make test QUIET=1 SHELL=cmd
92+
run: make -j2 test QUIET=1 SHELL=cmd

.github/workflows/snapshot-on-push-master.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: make -j2 lib QUIET=1
6060
- name: Run the regression tests.
6161
shell: bash
62-
run: make test QUIET=1
62+
run: make -j2 test QUIET=1
6363
- name: Test that the samples can be built.
6464
shell: bash
6565
run: make -j2 samples

.github/workflows/windows-test-scheduled.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Run the regression tests (make test)
7171
if: steps.check-sha.outputs.cache-hit != 'true'
7272
shell: cmd
73-
run: make test QUIET=1 SHELL=cmd
73+
run: make -j2 test QUIET=1 SHELL=cmd
7474

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

0 commit comments

Comments
 (0)