From: Georgi Gerganov Date: Sat, 15 Jun 2024 18:12:18 +0000 (+0300) Subject: ci : add GG_BUILD_NO_DOWNLOAD X-Git-Tag: upstream/0.0.1642~587 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=dee0d41711645975c7c7ff632422a8472a67d711;p=pkg%2Fggml%2Fsources%2Fggml ci : add GG_BUILD_NO_DOWNLOAD ggml-ci --- diff --git a/ci/run.sh b/ci/run.sh index 7a106969..6a7e17a1 100644 --- a/ci/run.sh +++ b/ci/run.sh @@ -344,11 +344,13 @@ if [ ! -z ${GG_BUILD_METAL} ]; then export GGML_METAL_PATH_RESOURCES="${SRC}/build-ci-release/bin" fi -test $ret -eq 0 && gg_run gpt_2 -test $ret -eq 0 && gg_run mnist -test $ret -eq 0 && gg_run whisper -test $ret -eq 0 && gg_run sam -test $ret -eq 0 && gg_run yolo +if [ -z ${GG_BUILD_NO_DOWNLOAD} ]; then + test $ret -eq 0 && gg_run gpt_2 + test $ret -eq 0 && gg_run mnist + test $ret -eq 0 && gg_run whisper + test $ret -eq 0 && gg_run sam + test $ret -eq 0 && gg_run yolo +fi if [ -z $GG_BUILD_LOW_PERF ]; then if [ -z ${GG_BUILD_VRAM_GB} ] || [ ${GG_BUILD_VRAM_GB} -ge 16 ]; then