ci : skip dummy model generation on OpenVINO

test-llama-archs does not build on the OpenVINO platform, so do not try
to generate the dummy models there.

Assisted-by: pi:llama.cpp/DeepSeek-V4-Flash-0731
This commit is contained in:
Georgi Gerganov
2026-09-03 17:19:51 +03:00
parent 5e81e25da6
commit 336c6687d8
+6 -3
View File
@@ -341,10 +341,13 @@ function gg_run_test_llama_archs_models {
set -e
rm -rf build-ci-models && mkdir -p build-ci-models
# TODO: fix and re-enable `test-llama-archs` on OpenVINO
if [ -z ${GG_BUILD_OPENVINO} ]; then
rm -rf build-ci-models && mkdir -p build-ci-models
# generate the dummy models used by the model-dependent tests
./build-ci-release/bin/test-llama-archs -o build-ci-models 2>&1
# generate the dummy models used by the model-dependent tests
./build-ci-release/bin/test-llama-archs -o build-ci-models 2>&1
fi
set +e
}