Skip to content

Commit 7d579fc

Browse files
committed
In build jobs, properly disable UR downloads
These jobs were not properly setting `SYCL_UR_USE_FETCH_CONTENT`, and so were fetching UR when they should have been using the UR under test.
1 parent 336e37b commit 7d579fc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/benchmarks_compute.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ jobs:
143143
--ci-defaults ${{matrix.adapter.sycl_config}}
144144
--cmake-opt="-DLLVM_INSTALL_UTILS=ON"
145145
--cmake-opt="-DSYCL_PI_TESTS=OFF"
146-
--cmake-opt="-DSYCL_PI_UR_USE_FETCH_CONTENT=OFF"
147-
--cmake-opt="-DSYCL_PI_UR_SOURCE_DIR=${{github.workspace}}/ur-repo/"
146+
--cmake-opt="-DSYCL_UR_USE_FETCH_CONTENT=OFF"
147+
--cmake-opt="-DSYCL_UR_SOURCE_DIR=${{github.workspace}}/ur-repo/"
148148
--cmake-opt=-DCMAKE_C_COMPILER_LAUNCHER=ccache
149149
--cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
150150

.github/workflows/e2e_core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ jobs:
130130
--ci-defaults ${{matrix.adapter.config}}
131131
--cmake-opt="-DLLVM_INSTALL_UTILS=ON"
132132
--cmake-opt="-DSYCL_PI_TESTS=OFF"
133-
--cmake-opt="-DSYCL_PI_UR_USE_FETCH_CONTENT=OFF"
134-
--cmake-opt="-DSYCL_PI_UR_SOURCE_DIR=${{github.workspace}}/ur-repo/"
133+
--cmake-opt="-DSYCL_UR_USE_FETCH_CONTENT=OFF"
134+
--cmake-opt="-DSYCL_UR_SOURCE_DIR=${{github.workspace}}/ur-repo/"
135135
--cmake-opt=-DCMAKE_C_COMPILER_LAUNCHER=ccache
136136
--cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
137137

0 commit comments

Comments
 (0)