We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f480b commit 5b3d349Copy full SHA for 5b3d349
.github/workflows/sycl-post-commit.yml
@@ -30,6 +30,7 @@ permissions: read-all
30
31
jobs:
32
detect_changes:
33
+ if: ${{ github.event_name == 'pull_request' }}
34
uses: ./.github/workflows/sycl-detect-changes.yml
35
36
build-lin:
@@ -99,6 +100,7 @@ jobs:
99
100
101
# Do not install drivers on AMD and CUDA runners.
102
install_igc_driver: >-
103
+ ${{ github.event_name == 'pull_request' }} &&
104
${{ !contains(matrix.target_devices, 'cuda') &&
105
!contains(matrix.target_devices, 'hip') &&
106
contains(needs.detect_changes.outputs.filters, 'drivers') }}
0 commit comments