This doesn't change anything for Cirrus CI, but makes it easier to play locally.
For reference, the same check is done when cloning DIR_FUZZ_IN.
This doesn't change anything for Cirrus CI, but makes it easier to play locally.
For reference, the same check is done when cloning DIR_FUZZ_IN.
utACK fac6a7df5553050890469cf307667150d846e369
111 | @@ -112,10 +112,13 @@ if [[ ${USE_MEMORY_SANITIZER} == "true" ]]; then 112 | fi 113 | 114 | if [[ "${RUN_TIDY}" == "true" ]]; then 115 | - CI_EXEC "mkdir -p ${BASE_SCRATCH_DIR}/iwyu/build/" 116 | - CI_EXEC "git clone --depth=1 https://github.com/include-what-you-use/include-what-you-use -b clang_14 ${BASE_SCRATCH_DIR}/iwyu/include-what-you-use" 117 | - CI_EXEC "cd ${BASE_SCRATCH_DIR}/iwyu/build && cmake -G 'Unix Makefiles' -DCMAKE_PREFIX_PATH=/usr/lib/llvm-14 ../include-what-you-use" 118 | - CI_EXEC "cd ${BASE_SCRATCH_DIR}/iwyu/build && make install $MAKEJOBS" 119 | + export DIR_IWYU="${BASE_SCRATCH_DIR}/iwyu/"
Not sure, but it looks like a / should either be dropped here, or dropped in the other lines that use it.
export DIR_IWYU="${BASE_SCRATCH_DIR}/iwyu"
thx changed. I don't think it makes a difference, though.
ACK fa847ed2f698a8a999352aeed63baf60b094e662