.github/workflows/sycl-post-commit.yml #7261
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SYCL Post Commit | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- sycl | |
- sycl-rel-** | |
pull_request: | |
branches: | |
- sycl | |
paths: | |
- .github/workflows/sycl-post-commit.yml | |
- .github/workflows/sycl-linux-build.yml | |
- .github/workflows/sycl-linux-run-tests.yml | |
- .github/workflows/sycl-macos-build-and-test.yml | |
- ./devops/actions/cleanup | |
- ./devops/actions/cached_checkout | |
- ./devops/dependencies.json | |
- ./devops/dependencies-igc-dev.json | |
concurrency: | |
# Cancel a currently running workflow from the same PR or commit hash. | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
macos_default: | |
name: macOS | |
if: github.repository == 'intel/llvm' | |
uses: ./.github/workflows/sycl-macos-build-and-test.yml |