From 9b98be160a65bc7b495a88a5a05f4bb53d9567e2 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 30 Nov 2023 17:45:20 +0100 Subject: [PATCH] ci: limit concurrent jobs (#1364) * ci: limit concurrent image push * docs: mention core images Signed-off-by: Ettore Di Giacinto --------- Signed-off-by: Ettore Di Giacinto --- .github/workflows/image.yml | 3 +++ docs/content/getting_started/_index.en.md | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 6caa9bd9..e42fe68e 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -16,6 +16,9 @@ concurrency: jobs: image-build: strategy: + # Pushing with all jobs in parallel + # eats the bandwidth of all the nodes + max-parallel: ${{ github.event_name != 'pull_request' && 1 || 4 }} matrix: include: - build-type: '' diff --git a/docs/content/getting_started/_index.en.md b/docs/content/getting_started/_index.en.md index 35c89b4f..4185bb29 100644 --- a/docs/content/getting_started/_index.en.md +++ b/docs/content/getting_started/_index.en.md @@ -189,6 +189,7 @@ LocalAI has a set of images to support CUDA, ffmpeg and 'vanilla' (CPU-only). Th - CUDA `12` tags: `master-cublas-cuda12`, `v1.40.0-cublas-cuda12`, ... - CUDA `11` + FFmpeg tags: `master-cublas-cuda11-ffmpeg`, `v1.40.0-cublas-cuda11-ffmpeg`, ... - CUDA `12` + FFmpeg tags: `master-cublas-cuda12-ffmpeg`, `v1.40.0-cublas-cuda12-ffmpeg`, ... +- Core images (smaller images without python dependencies): `master-core`, `v1.40.0-core`, ... Example: