Skip to content

Commit 441c48e

Browse files
committed
fix: Update script paths in CI scripts
1 parent c879328 commit 441c48e

8 files changed

+12
-6
lines changed

ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ function gg_run_embd_bge_small {
688688
(time cmake -DCMAKE_BUILD_TYPE=Release ${CMAKE_EXTRA} .. ) 2>&1 | tee -a $OUT/${ci}-cmake.log
689689
(time make -j ) 2>&1 | tee -a $OUT/${ci}-make.log
690690

691-
python3 ../convert-hf-to-gguf.py ${path_models} --outfile ${path_models}/ggml-model-f16.gguf
691+
python3 ../convert_hf_to_gguf.py ${path_models} --outfile ${path_models}/ggml-model-f16.gguf
692692

693693
model_f16="${path_models}/ggml-model-f16.gguf"
694694
model_q8_0="${path_models}/ggml-model-q8_0.gguf"

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
-r ./requirements/requirements-convert-legacy-llama.txt
88

9-
-r ./requirements/requirements-convert-hf-to-gguf.txt
10-
-r ./requirements/requirements-convert-hf-to-gguf-update.txt
11-
-r ./requirements/requirements-convert-llama-ggml-to-gguf.txt
9+
-r ./requirements/requirements-convert_hf_to_gguf.txt
10+
-r ./requirements/requirements-convert_hf_to_gguf_update.txt
11+
-r ./requirements/requirements-convert_llama_ggml_to_gguf.txt
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-r ./requirements-convert.txt
2+
torch~=2.1.1
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-r ./requirements-convert.txt
2+
torch~=2.1.1
3+

scripts/check-requirements.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ if (( do_cleanup )); then
167167
fi
168168

169169
check_convert_script examples/convert-legacy-llama.py
170-
for py in convert-*.py; do
170+
for py in convert_*.py; do
171171
# skip convert-hf-to-gguf-update.py
172172
# TODO: the check is failing for some reason:
173173
# https://github.com/ggerganov/llama.cpp/actions/runs/8875330981/job/24364557177?pr=6920
174-
[[ $py == convert-hf-to-gguf-update.py ]] && continue
174+
[[ $py == convert_hf_to_gguf_update.py ]] && continue
175175

176176
check_convert_script "$py"
177177
done

0 commit comments

Comments
 (0)