Skip to content

Commit 939fefa

Browse files
committed
Turn off parallel builds in protobuf conformance.
This works for in the ObjC build script, but builds a slightly larger set of things so it must be luck there. leave the build serial just to be safe.
1 parent 00a4f63 commit 939fefa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
./configure
8080
NUM_CPUS=$(getconf _NPROCESSORS_ONLN)
8181
make -C ./src -j "${NUM_CPUS}" protoc
82-
make -C ./conformance -j "${NUM_CPUS}" conformance-test-runner
82+
make -C ./conformance conformance-test-runner
8383
- name: Test plugin
8484
working-directory: main
8585
run: make test-plugin PROTOC=../protobuf/src/protoc

.github/workflows/regular_conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
./configure
7676
NUM_CPUS=$(getconf _NPROCESSORS_ONLN)
7777
make -C ./src -j "${NUM_CPUS}" protoc
78-
make -C ./conformance -j "${NUM_CPUS}" conformance-test-runner
78+
make -C ./conformance conformance-test-runner
7979
- name: Test conformance
8080
working-directory: main
8181
run: make test-conformance

0 commit comments

Comments
 (0)