mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-20 18:45:00 +00:00
chore(grpcio): reduce parallelism (#4799)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
parent
8fd3ace9a1
commit
516cd660f1
2 changed files with 3 additions and 3 deletions
2
.github/workflows/generate_grpc_cache.yaml
vendored
2
.github/workflows/generate_grpc_cache.yaml
vendored
|
@ -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.
|
# 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: |
|
build-args: |
|
||||||
GRPC_BASE_IMAGE=${{ matrix.grpc-base-image }}
|
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
|
GRPC_VERSION=v1.70.0
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
|
|
4
.github/workflows/image_build.yml
vendored
4
.github/workflows/image_build.yml
vendored
|
@ -235,7 +235,7 @@ jobs:
|
||||||
IMAGE_TYPE=${{ inputs.image-type }}
|
IMAGE_TYPE=${{ inputs.image-type }}
|
||||||
BASE_IMAGE=${{ inputs.base-image }}
|
BASE_IMAGE=${{ inputs.base-image }}
|
||||||
GRPC_BASE_IMAGE=${{ inputs.grpc-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
|
GRPC_VERSION=v1.70.0
|
||||||
MAKEFLAGS=${{ inputs.makeflags }}
|
MAKEFLAGS=${{ inputs.makeflags }}
|
||||||
SKIP_DRIVERS=${{ inputs.skip-drivers }}
|
SKIP_DRIVERS=${{ inputs.skip-drivers }}
|
||||||
|
@ -264,7 +264,7 @@ jobs:
|
||||||
IMAGE_TYPE=${{ inputs.image-type }}
|
IMAGE_TYPE=${{ inputs.image-type }}
|
||||||
BASE_IMAGE=${{ inputs.base-image }}
|
BASE_IMAGE=${{ inputs.base-image }}
|
||||||
GRPC_BASE_IMAGE=${{ inputs.grpc-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
|
GRPC_VERSION=v1.70.0
|
||||||
MAKEFLAGS=${{ inputs.makeflags }}
|
MAKEFLAGS=${{ inputs.makeflags }}
|
||||||
SKIP_DRIVERS=${{ inputs.skip-drivers }}
|
SKIP_DRIVERS=${{ inputs.skip-drivers }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue