Skip to content

Commit e629c0a

Browse files
committed
GPU Standalone CI: Test also build without ROOT/VC/FMT/ONNX
1 parent 9fa8cf5 commit e629c0a

File tree

1 file changed

+12
-0
lines changed
  • GPU/GPUTracking/Standalone/cmake

1 file changed

+12
-0
lines changed

GPU/GPUTracking/Standalone/cmake/build.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,16 @@ EOF
1919
fi
2020
cmake -DCMAKE_INSTALL_PREFIX=../ $1/GPU/GPUTracking/Standalone
2121
make ${JOBS+-j $JOBS} install
22+
if [[ $GPUCA_STANDALONE_CI == 1 ]]; then
23+
cat >> config.cmake << "EOF"
24+
set(ENABLE_CUDA 0)
25+
set(ENABLE_HIP 0)
26+
set(ENABLE_OPENCL 0)
27+
set(GPUCA_CONFIG_ONNX 0)
28+
set(GPUCA_CONFIG_VC 0)
29+
set(GPUCA_CONFIG_FMT 0)
30+
set(GPUCA_CONFIG_ROOT 0)
31+
EOF
32+
make ${JOBS+-j $JOBS} install
33+
fi
2234
popd

0 commit comments

Comments
 (0)