Skip to content

Commit adb8d9e

Browse files
authored
Merge pull request #963 from wlemkows/e2e-cuda-nightly
[UR][E2E][CUDA] e2e nightly improvements
2 parents eb9e8c2 + 21e1834 commit adb8d9e

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

.github/workflows/e2e_nightly.yml

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ jobs:
1919
runs-on: ${{matrix.adapter.name}}
2020

2121
steps:
22+
# Workspace on self-hosted runners is not cleaned automatically.
23+
# We have to delete the files created outside of using actions.
24+
- name: Cleanup self-hosted workspace
25+
if: always()
26+
run: |
27+
ls -la ./
28+
rm -rf ./* || true
29+
2230
- name: Checkout UR
2331
uses: actions/checkout@v4
2432
with:
@@ -36,12 +44,6 @@ jobs:
3644
working-directory: ${{github.workspace}}/ur-repo
3745
run: pip install -r third_party/requirements.txt
3846

39-
- name: Download DPC++
40-
run: |
41-
wget -O dpcpp_compiler.tar.gz https://github.com/intel/llvm/releases/download/nightly-2023-09-21/sycl_linux.tar.gz
42-
mkdir dpcpp_compiler
43-
tar -xvf dpcpp_compiler.tar.gz -C dpcpp_compiler
44-
4547
- name: Configure CMake UR
4648
working-directory: ${{github.workspace}}/ur-repo
4749
run: >
@@ -53,7 +55,6 @@ jobs:
5355
-DUR_ENABLE_TRACING=ON
5456
-DUR_DEVELOPER_MODE=ON
5557
-DUR_BUILD_ADAPTER_${{matrix.adapter.name}}=ON
56-
-DUR_DPCXX=${{github.workspace}}/dpcpp_compiler/bin/clang++
5758
5859
- name: Build UR
5960
run: LD_LIBRARY_PATH=${{github.workspace}}/dpcpp_compiler/lib
@@ -112,11 +113,3 @@ jobs:
112113
113114
- name: Run e2e tests
114115
run: ninja -C build-e2e check-sycl-e2e
115-
116-
# Workspace on self-hosted runners is not cleaned automatically.
117-
# We have to delete the files created outside of using actions.
118-
- name: Cleanup self-hosted workspace
119-
if: always()
120-
run: |
121-
ls -la ./
122-
rm -rf ./* || true

0 commit comments

Comments
 (0)