Skip to content

Commit

Permalink
tweak gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
vcfxb committed Jul 14, 2024
1 parent 9cf72da commit 77e36dc
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/cargo-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,14 @@ jobs:
run: brew install llvm@18

check-llvm-version:
needs: install-llvm
needs: install-llvm
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allow-failure || false }}

defaults:
run:
shell: ${{ matrix.shell }}

steps:
- name: Get the LLVM version (Windows Only)
if: ${{ matrix.os == 'windows-latest' }}
Expand All @@ -94,6 +101,13 @@ jobs:
continue-on-error: true

check:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allow-failure || false }}

defaults:
run:
shell: ${{ matrix.shell }}

steps:
- name: Checkout Wright source
uses: actions/checkout@v4
Expand Down

0 comments on commit 77e36dc

Please sign in to comment.