Skip to content

Commit 9b98be1

Browse files
authored
ci: limit concurrent jobs (#1364)
* ci: limit concurrent image push * docs: mention core images Signed-off-by: Ettore Di Giacinto <[email protected]> --------- Signed-off-by: Ettore Di Giacinto <[email protected]>
1 parent 9f708ff commit 9b98be1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/image.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ concurrency:
1616
jobs:
1717
image-build:
1818
strategy:
19+
# Pushing with all jobs in parallel
20+
# eats the bandwidth of all the nodes
21+
max-parallel: ${{ github.event_name != 'pull_request' && 1 || 4 }}
1922
matrix:
2023
include:
2124
- build-type: ''

docs/content/getting_started/_index.en.md

+1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ LocalAI has a set of images to support CUDA, ffmpeg and 'vanilla' (CPU-only). Th
189189
- CUDA `12` tags: `master-cublas-cuda12`, `v1.40.0-cublas-cuda12`, ...
190190
- CUDA `11` + FFmpeg tags: `master-cublas-cuda11-ffmpeg`, `v1.40.0-cublas-cuda11-ffmpeg`, ...
191191
- CUDA `12` + FFmpeg tags: `master-cublas-cuda12-ffmpeg`, `v1.40.0-cublas-cuda12-ffmpeg`, ...
192+
- Core images (smaller images without python dependencies): `master-core`, `v1.40.0-core`, ...
192193

193194
Example:
194195

0 commit comments

Comments
 (0)