Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/test_nwx_cmake_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ on:
type: string
required: false
default: ""
allow_macos_failure:
description: >-
If "true", a failure on the macos-14 matrix leg is reported but
does not fail the job/block the workflow (via continue-on-error).
Other legs are unaffected. For repos with a known, tracked,
macOS-only issue that shouldn't block merges while it's being
investigated -- default "false" keeps the normal all-legs-required
behavior for every other caller.
type: string
required: false
default: "false"

jobs:
platform_matrix:
Expand All @@ -57,6 +68,7 @@ jobs:
matrix:
include: ${{ fromJSON(needs.platform_matrix.outputs.dev_matrix) }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'macos-14' && inputs.allow_macos_failure == 'true' }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test_nwx_pip_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ on:
type: string
required: false
default: ""
allow_macos_failure:
description: >-
If "true", a failure on the macos-14 matrix leg is reported but
does not fail the job/block the workflow (via continue-on-error).
Other legs are unaffected. For repos with a known, tracked,
macOS-only issue that shouldn't block merges while it's being
investigated -- default "false" keeps the normal all-legs-required
behavior for every other caller.
type: string
required: false
default: "false"

jobs:
platform_matrix:
Expand All @@ -47,6 +58,7 @@ jobs:
matrix:
include: ${{ fromJSON(needs.platform_matrix.outputs.dev_matrix) }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'macos-14' && inputs.allow_macos_failure == 'true' }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
Expand Down
Loading