Skip to content

Commit e3a0a2e

Browse files
committed
[CI] Add option to install driver with dev igc
Ref: #11552
1 parent c0ade1b commit e3a0a2e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/sycl-linux-run-tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ on:
6868
install_drivers:
6969
type: string
7070
required: False
71+
use_dev_igc:
72+
type: string
73+
required: False
7174
env:
7275
type: string
7376
default: '{}'
@@ -132,6 +135,12 @@ on:
132135
- false
133136
- true
134137

138+
use_dev_igc:
139+
type: choice
140+
options:
141+
- false
142+
- true
143+
135144
permissions:
136145
contents: read
137146

@@ -182,7 +191,7 @@ jobs:
182191
env:
183192
GITHUB_TOKEN: ${{ github.token }}
184193
run: |
185-
sudo -E bash devops/scripts/install_drivers.sh llvm/devops/dependencies.json --all
194+
sudo -E bash devops/scripts/install_drivers.sh llvm/devops/dependencies.json --all ${{ inputs.use_dev_igc == 'true' && '--use-dev-igc' || '' }}
186195
- name: Source OneAPI TBB vars.sh
187196
shell: bash
188197
run: |

0 commit comments

Comments
 (0)