chore(grpcio): reduce parallelism (#4799)

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
Ettore Di Giacinto 2025-02-10 18:56:13 +01:00 committed by GitHub
parent 8fd3ace9a1
commit 516cd660f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ jobs:
# 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.
build-args: |
GRPC_BASE_IMAGE=${{ matrix.grpc-base-image }}
GRPC_MAKEFLAGS=--jobs=2 --output-sync=target
GRPC_MAKEFLAGS=--jobs=1 --output-sync=target
GRPC_VERSION=v1.70.0
context: .
file: ./Dockerfile

View File

@ -235,7 +235,7 @@ jobs:
IMAGE_TYPE=${{ inputs.image-type }}
BASE_IMAGE=${{ inputs.base-image }}
GRPC_BASE_IMAGE=${{ inputs.grpc-base-image || inputs.base-image }}
GRPC_MAKEFLAGS=--jobs=2 --output-sync=target
GRPC_MAKEFLAGS=--jobs=1 --output-sync=target
GRPC_VERSION=v1.70.0
MAKEFLAGS=${{ inputs.makeflags }}
SKIP_DRIVERS=${{ inputs.skip-drivers }}
@ -264,7 +264,7 @@ jobs:
IMAGE_TYPE=${{ inputs.image-type }}
BASE_IMAGE=${{ inputs.base-image }}
GRPC_BASE_IMAGE=${{ inputs.grpc-base-image || inputs.base-image }}
GRPC_MAKEFLAGS=--jobs=2 --output-sync=target
GRPC_MAKEFLAGS=--jobs=1 --output-sync=target
GRPC_VERSION=v1.70.0
MAKEFLAGS=${{ inputs.makeflags }}
SKIP_DRIVERS=${{ inputs.skip-drivers }}