Skip to content
Closed
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
7 changes: 7 additions & 0 deletions .github/workflows/sycl_precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,10 @@ jobs:
build_cache_suffix: "default"
lts_matrix: ${{ needs.test_matrix.outputs.lts_matrix }}
lts_aws_matrix: ${{ needs.test_matrix.outputs.lts_aws_matrix }}

windows_default:
name: Windows
needs: lint
uses: ./.github/workflows/sycl_windows_build_and_test.yml
with:
checks2run: "min"
8 changes: 6 additions & 2 deletions .github/workflows/sycl_windows_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
type: string
required: false
default: "default"
checks2run:
type: string
required: false
default: "all"

jobs:
build:
Expand Down Expand Up @@ -51,11 +55,11 @@ jobs:
sccache --show-stats
- name: check-llvm
shell: bash
if: ${{ always() && !cancelled() && steps.build.outcome == 'success' }}
if: ${{ always() && !cancelled() && steps.build.outcome == 'success' && inputs.checks2run == 'all'}}
run: |
cmake --build build --target check-llvm
- name: check-clang
if: ${{ always() && !cancelled() && steps.build.outcome == 'success' }}
if: ${{ always() && !cancelled() && steps.build.outcome == 'success' && inputs.checks2run == 'all'}}
shell: bash
run: |
cmake --build build --target check-clang
Expand Down