Workflow Updates for GitHub CI #1
Workflow file for this run
This file contains 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: intel_gpu | |
on: | |
pull_request: | |
# run CI only if intel_gpu directory or intel_gpu sub-directories receive updates | |
# run CI if framework receives an update | |
paths: | |
- 'src/components/intel_gpu/**' | |
- 'src/*' | |
jobs: | |
component_tests: | |
strategy: | |
matrix: | |
component: [intel_gpu] | |
debug: [yes, no] | |
shlib: [with, without] | |
fail-fast: false | |
runs-on: [self-hosted, gpu_intel] | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: intel_gpu component tests | |
run: .github/workflows/ci_per_component.sh ${{matrix.component}} ${{matrix.debug}} ${{matrix.shlib}} |