Skip to content

Commit 3763f50

Browse files
committed
Be robust to no ccache being available
Signed-off-by: Larry Gritz <[email protected]>
1 parent 3a5fe5b commit 3763f50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build-scripts/ci-build.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ cp -r ${OSL_BUILD_DIR}/CMake* ${OSL_BUILD_DIR}/*.cmake ${OSL_BUILD_DIR}/cmake-sa
4141
if [[ "$BUILDTARGET" != "none" ]] ; then
4242
echo "Parallel build ${CMAKE_BUILD_PARALLEL_LEVEL} of target ${BUILDTARGET}"
4343
time ${OSL_CMAKE_BUILD_WRAPPER} cmake --build ${OSL_BUILD_DIR} --target ${BUILDTARGET} --config ${OSL_CMAKE_BUILD_TYPE}
44-
ccache --show-stats
44+
ccache --show-stats || true
4545
fi
4646

4747
if [[ "${DEBUG_CI:=0}" != "0" ]] ; then

0 commit comments

Comments
 (0)