Skip to content

Commit

Permalink
disable ccache
Browse files Browse the repository at this point in the history
  • Loading branch information
ianayl committed Sep 12, 2024
1 parent 6c83d2b commit 5266cac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devops/scripts/benchmarking/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ clone_compute_bench() {
build_compute_bench() {
echo "### Building compute-benchmarks ($COMPUTE_BENCH_GIT_REPO:$COMPUTE_BENCH_BRANCH) ###"
mkdir $COMPUTE_BENCH_PATH/build && cd $COMPUTE_BENCH_PATH/build &&
cmake .. -DBUILD_SYCL=ON && cmake --build . $COMPUTE_BENCH_COMPILE_FLAGS
cmake .. -DBUILD_SYCL=ON -DCCACHE_ALLOWED=FALSE && cmake --build . $COMPUTE_BENCH_COMPILE_FLAGS
# No reason to turn on ccache, if this docker image will be disassembled later on
#compute_bench_build_stat=$?
cd -
#[ "$compute_bench_build_stat" -ne 0 ] && exit $compute_bench_build_stat
Expand Down

0 comments on commit 5266cac

Please sign in to comment.