File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
devops/actions/run-tests/cts Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 48
48
Note: it doesn't affect ./devops/actions/run-tests/* as these actions
49
49
call checkout again and therefore override the devops directory, so
50
50
configs/dependecies from input.ref are used.
51
+ sycl_cts_ref :
52
+ description : " Commit SHA or branch to checkout"
53
+ type : string
54
+ default : " main"
55
+ required : False
51
56
52
57
sycl_toolchain_artifact :
53
58
type : string
@@ -314,3 +319,4 @@ jobs:
314
319
sycl_cts_artifact : ${{ inputs.sycl_cts_artifact }}
315
320
target_devices : ${{ inputs.target_devices }}
316
321
retention-days : ${{ inputs.retention-days }}
322
+ sycl_cts_ref : ${{ inputs.sycl_cts_ref }}
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ inputs:
11
11
required : true
12
12
retention-days :
13
13
required : false
14
+ sycl_cts_ref :
15
+ description : " Commit SHA or branch to checkout"
16
+ required : false
17
+ default : " main"
14
18
15
19
runs :
16
20
using : " composite"
21
25
with :
22
26
path : khronos_sycl_cts
23
27
repository : ' KhronosGroup/SYCL-CTS'
24
- ref : ' main'
25
- default_branch : ' main'
28
+ ref : ${{ inputs.sycl_cts_ref }}
26
29
cache_path : " /__w/repo_cache/"
27
30
- name : SYCL CTS GIT submodules init
28
31
if : inputs.cts_testing_mode != 'run-only'
You can’t perform that action at this time.
0 commit comments