From dee0d41711645975c7c7ff632422a8472a67d711 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sat, 15 Jun 2024 21:12:18 +0300 Subject: [PATCH] ci : add GG_BUILD_NO_DOWNLOAD ggml-ci --- ci/run.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ci/run.sh b/ci/run.sh index 7a106969b..6a7e17a12 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