File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
devops/actions/run-tests/e2e Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -117,12 +117,14 @@ jobs:
117
117
echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
118
118
- name : Register cleanup after job is finished
119
119
uses : ./devops/actions/cleanup
120
- - uses : ./devops/ actions/cached_checkout
120
+ - uses : actions/checkout@v4
121
121
if : inputs.tests_selector == 'e2e'
122
122
with :
123
123
path : llvm
124
124
ref : ${{ inputs.repo_ref || github.sha }}
125
- cache_path : " D:\\\\ github\\\\ _work\\\\ repo_cache\\\\ "
125
+ sparse-checkout : |
126
+ llvm/utils/lit
127
+ sycl/test-e2e
126
128
- name : Download compiler toolchain
127
129
uses : actions/download-artifact@v4
128
130
with :
Original file line number Diff line number Diff line change @@ -23,11 +23,13 @@ runs:
23
23
using : " composite"
24
24
steps :
25
25
- name : Checkout E2E tests
26
- uses : ./devops/ actions/cached_checkout
26
+ uses : actions/checkout@v4
27
27
with :
28
28
path : llvm
29
29
ref : ${{ inputs.ref || github.sha }}
30
- cache_path : " /__w/repo_cache/"
30
+ sparse-checkout : |
31
+ llvm/utils/lit
32
+ sycl/test-e2e
31
33
32
34
- name : Download E2E Binaries
33
35
if : inputs.testing_mode == 'run-only'
You can’t perform that action at this time.
0 commit comments