File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 24
24
- ' devops/containers/**'
25
25
- ' devops/actions/build_container/**'
26
26
27
+ workflow_dispatch :
28
+ inputs :
29
+ intel_drivers_docker_image_tag :
30
+ type : choice
31
+ options :
32
+ - ' latest'
33
+ - ' devigc'
34
+ - ' unstable'
35
+ default : ' latest'
36
+
27
37
concurrency :
28
38
# Cancel a currently running workflow from the same PR, branch or tag.
29
39
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -81,15 +91,15 @@ jobs:
81
91
target_devices : ext_oneapi_hip:gpu
82
92
- name : Intel
83
93
runner : ' ["Linux", "gen12"]'
84
- image : ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
94
+ image : ghcr.io/intel/llvm/ubuntu2204_intel_drivers:${{ github.event_name == 'workflow_dispatch' && inputs.intel_drivers_docker_image_tag || ' latest' }}
85
95
image_options : -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
86
96
target_devices : ext_oneapi_level_zero:gpu;opencl:gpu;opencl:cpu
87
97
reset_gpu : true
88
98
install_drivers : ${{ contains(needs.detect_changes.outputs.filters, 'drivers') }}
89
99
extra_lit_opts : --param gpu-intel-gen12=True
90
100
- name : E2E tests on Intel Arc A-Series Graphics
91
101
runner : ' ["Linux", "arc"]'
92
- image : ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
102
+ image : ghcr.io/intel/llvm/ubuntu2204_intel_drivers:${{ github.event_name == 'workflow_dispatch' && inputs.intel_drivers_docker_image_tag || ' latest' }}
93
103
image_options : -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
94
104
target_devices : ext_oneapi_level_zero:gpu;opencl:gpu
95
105
reset_gpu : true
You can’t perform that action at this time.
0 commit comments