mirror of
https://github.com/ollama/ollama.git
synced 2026-08-04 14:56:15 +00:00
ci: on release builds dont fail fast (#17413)
If we have one flake, don't stop other jobs that will most likely work so when we re-run failed jobs, only the flake and dependents need to be run. This should help reduce the time it takes to get past a flake and finish a release build.
This commit is contained in:
parent
be7572e2cf
commit
eec8e0b945
1 changed files with 4 additions and 0 deletions
4
.github/workflows/release.yaml
vendored
4
.github/workflows/release.yaml
vendored
|
|
@ -93,6 +93,7 @@ jobs:
|
|||
windows-depends:
|
||||
needs: setup-environment
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [windows]
|
||||
arch: [amd64]
|
||||
|
|
@ -450,6 +451,7 @@ jobs:
|
|||
|
||||
linux-depends:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- arch: amd64
|
||||
|
|
@ -531,6 +533,7 @@ jobs:
|
|||
# and just assembles, runs the Go build, pushes the final image, and extracts release bundles.
|
||||
docker-build-push:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: linux
|
||||
|
|
@ -681,6 +684,7 @@ jobs:
|
|||
# Merge Docker images for the same flavor into a single multi-arch manifest
|
||||
docker-merge-push:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
suffix: ['', '-rocm']
|
||||
runs-on: linux
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue