ci: add debug build to dev makefile

This commit is contained in:
Andrei Betlen 2024-02-21 11:04:30 -05:00
parent 04fe33b999
commit f57b01ac9b

View file

@ -12,6 +12,9 @@ deps:
build:
python3 -m pip install --verbose -e .
build.debug:
CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug" python3 -m pip install --verbose --config-settings=cmake.verbose=true --config-settings=logging.level=INFO --config-settings=install.strip=false --editable .
build.cuda:
CMAKE_ARGS="-DLLAMA_CUBLAS=on" python3 -m pip install --verbose -e .