diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-25 14:27:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 14:27:20 +0300 |
commit | aa750c1ede6232c91de890a14a7731d6daa2bc8e (patch) | |
tree | e0e407a4afa8c6538ed92d1e5d0b9896b1183cbf /ci/run.sh | |
parent | 1966eb2615242f224bf9ca939db8905ab6a174a0 (diff) |
tests : minor bash stuff (#6902)
* tests : minor bash stuff
ggml-ci
* llama : fix build
ggml-ci
* tests : fix CUR_DIR -> ROOT_DIR
ggml-ci
* tests : fix fname
ggml-ci
Diffstat (limited to 'ci/run.sh')
-rwxr-xr-x | ci/run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -161,6 +161,7 @@ function gg_run_test_scripts_debug { set -e (cd ./examples/gguf-split && time bash tests.sh "$SRC/build-ci-debug/bin" "$MNT/models") 2>&1 | tee -a $OUT/${ci}-scripts.log + (cd ./examples/quantize && time bash tests.sh "$SRC/build-ci-debug/bin" "$MNT/models") 2>&1 | tee -a $OUT/${ci}-scripts.log set +e } @@ -184,6 +185,7 @@ function gg_run_test_scripts_release { set -e (cd ./examples/gguf-split && time bash tests.sh "$SRC/build-ci-release/bin" "$MNT/models") 2>&1 | tee -a $OUT/${ci}-scripts.log + (cd ./examples/quantize && time bash tests.sh "$SRC/build-ci-release/bin" "$MNT/models") 2>&1 | tee -a $OUT/${ci}-scripts.log set +e } |