aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-05-01 12:59:22 -0400
committerJoshua M. Boniface <joshua@boniface.me>2024-05-01 12:59:22 -0400
commitfad8561616074100c32751416891c0dd9586d5ef (patch)
tree1a99f74f65a5b19e7230e510fdbf9c44e39830d2 /.github/workflows
parentAvoid failing if sources.list.d is empty (diff)
downloadjellyfin-packaging-fad8561616074100c32751416891c0dd9586d5ef.tar.gz
jellyfin-packaging-fad8561616074100c32751416891c0dd9586d5ef.tar.bz2
jellyfin-packaging-fad8561616074100c32751416891c0dd9586d5ef.zip
Disable fast-fail strategy
This will prevent a failed build from cancelling other failed builds, important since all are independent of each other.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release-build.yaml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index fff3115..cd00e89 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -54,6 +54,7 @@ jobs:
Debian:
runs-on: ubuntu-22.04
strategy:
+ fast-fail: false
matrix:
release:
- bullseye
@@ -146,6 +147,7 @@ jobs:
Ubuntu:
runs-on: ubuntu-22.04
strategy:
+ fast-fail: false
matrix:
release:
- focal
@@ -239,6 +241,7 @@ jobs:
Linux:
runs-on: ubuntu-22.04
strategy:
+ fast-fail: false
matrix:
arch:
- amd64
@@ -306,6 +309,7 @@ jobs:
Windows:
runs-on: ubuntu-22.04
strategy:
+ fast-fail: false
matrix:
arch:
- amd64
@@ -370,6 +374,7 @@ jobs:
MacOS:
runs-on: ubuntu-22.04
strategy:
+ fast-fail: false
matrix:
arch:
- amd64
bgstack15