Skip to content

Commit 46e5bf6

Browse files
committed
chore(grpcio): reduce parallelism
Signed-off-by: Ettore Di Giacinto <[email protected]>
1 parent 8fd3ace commit 46e5bf6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/generate_grpc_cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
# If the build-args are not an EXACT match, it will result in a cache miss, which will require GRPC to be built from scratch.
8484
build-args: |
8585
GRPC_BASE_IMAGE=${{ matrix.grpc-base-image }}
86-
GRPC_MAKEFLAGS=--jobs=2 --output-sync=target
86+
GRPC_MAKEFLAGS=--jobs=1 --output-sync=target
8787
GRPC_VERSION=v1.70.0
8888
context: .
8989
file: ./Dockerfile

.github/workflows/image_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ jobs:
235235
IMAGE_TYPE=${{ inputs.image-type }}
236236
BASE_IMAGE=${{ inputs.base-image }}
237237
GRPC_BASE_IMAGE=${{ inputs.grpc-base-image || inputs.base-image }}
238-
GRPC_MAKEFLAGS=--jobs=2 --output-sync=target
238+
GRPC_MAKEFLAGS=--jobs=1 --output-sync=target
239239
GRPC_VERSION=v1.70.0
240240
MAKEFLAGS=${{ inputs.makeflags }}
241241
SKIP_DRIVERS=${{ inputs.skip-drivers }}
@@ -264,7 +264,7 @@ jobs:
264264
IMAGE_TYPE=${{ inputs.image-type }}
265265
BASE_IMAGE=${{ inputs.base-image }}
266266
GRPC_BASE_IMAGE=${{ inputs.grpc-base-image || inputs.base-image }}
267-
GRPC_MAKEFLAGS=--jobs=2 --output-sync=target
267+
GRPC_MAKEFLAGS=--jobs=1 --output-sync=target
268268
GRPC_VERSION=v1.70.0
269269
MAKEFLAGS=${{ inputs.makeflags }}
270270
SKIP_DRIVERS=${{ inputs.skip-drivers }}

0 commit comments

Comments
 (0)