Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
test-action:
needs: build
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
scenario:
Expand All @@ -51,6 +52,7 @@ jobs:
- cache-false
- clean-false
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'macos-latest' && matrix.scenario == 'clean-false' }}
steps:
- uses: actions/checkout@v7

Expand Down Expand Up @@ -108,6 +110,10 @@ jobs:
cache: false
token: ${{ secrets.GITHUB_TOKEN }}

# Known issue: on macOS ARM64, building V from source fails because the
# bootstrap compiler does not understand `$if !native`. The `clean-false`
# scenario on macos-latest is allowed to fail (continue-on-error) since
# it tests an edge case that depends on upstream V build infrastructure.
- name: Run Action (clean-false)
if: matrix.scenario == 'clean-false'
uses: ./
Expand Down
Loading