Skip to content

Commit

Permalink
don't fail fast
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Nov 2, 2024
1 parent 9e14a3b commit cf2fe9c
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 17 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-image-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
workflow_dispatch:
inputs:
brand_name:
description: 'Image Brand to Build'
description: "Image Brand to Build"
default: '["bluefin"]'
type: choice
options:
Expand All @@ -32,6 +32,7 @@ jobs:
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }}
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-image-gts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ on:
- main
- testing
paths-ignore:
- '**.md'
- "**.md"
schedule:
- cron: '41 5 * * 0' # 5:41 UTC Weekly on Sundays
- cron: "41 5 * * 0" # 5:41 UTC Weekly on Sundays
workflow_dispatch:
workflow_call:
workflow_call:

jobs:
build-image-gts:
name: Build GTS Images
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: [bluefin]
with:
brand_name: ${{ matrix.brand_name }}
fedora_version: gts

9 changes: 5 additions & 4 deletions .github/workflows/build-image-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ on:
- main
- testing
paths-ignore:
- '**.md'
- "**.md"
push:
branches:
- main
paths-ignore:
- '**.md'
- "**.md"
schedule:
- cron: '40 4 * * *' # 4:40 UTC everyday
- cron: "40 4 * * *" # 4:40 UTC everyday
workflow_call:
workflow_dispatch:
inputs:
brand_name:
description: 'Image Brand to Build'
description: "Image Brand to Build"
default: '["bluefin"]'
type: choice
options:
Expand All @@ -32,6 +32,7 @@ jobs:
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }}
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build-image-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
- main
- testing
paths-ignore:
- '**.md'
- "**.md"
schedule:
- cron: '45 5 * * *' # 5:41 UTC everyday
- cron: "45 5 * * *" # 5:41 UTC everyday
workflow_call:
workflow_dispatch:
inputs:
brand_name:
description: 'Image Brand to Build'
description: "Image Brand to Build"
default: '["bluefin"]'
type: choice
options:
Expand All @@ -26,6 +26,7 @@ jobs:
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-iso-gts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ on:
# schedule:
# - cron: '0 2 * * sun' # 02:00 Sunday
workflow_dispatch:
workflow_call:
workflow_call:

jobs:
build-iso-gts:
name: Build GTS ISOs
uses: ./.github/workflows/reusable-build-iso.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: [bluefin]
with:
brand_name: ${{ matrix.brand_name }}
fedora_version: gts

3 changes: 2 additions & 1 deletion .github/workflows/build-iso-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
brand_name:
description: 'Image Brand to Build'
description: "Image Brand to Build"
default: '["bluefin"]'
type: choice
options:
Expand All @@ -20,6 +20,7 @@ jobs:
uses: ./.github/workflows/reusable-build-iso.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }}
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-iso-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
brand_name:
description: 'Image Brand to Build'
description: "Image Brand to Build"
default: '["bluefin"]'
type: choice
options:
Expand All @@ -20,8 +20,9 @@ jobs:
uses: ./.github/workflows/reusable-build-iso.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: ${{ fromJson(inputs.brand_name || '["bluefin", "aurora"]') }}
with:
brand_name: ${{ matrix.brand_name }}
fedora_version: stable
fedora_version: stable

0 comments on commit cf2fe9c

Please sign in to comment.