Skip to content

Commit 708a0b0

Browse files
authored
explicitly define which scripts to run
1 parent e53bc29 commit 708a0b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function gg_run_test_scripts_debug {
160160

161161
set -e
162162

163-
(find ./examples -mindepth 2 -maxdepth 2 -name 'tests.sh' -execdir time bash "{}" "$SRC/build-ci-debug/bin" "$MNT/models" \;) 2>&1 | tee -a $OUT/${ci}-scripts.log
163+
(cd ./examples/gguf-split && time bash tests.sh "$SRC/build-ci-debug/bin" "$MNT/models") 2>&1 | tee -a $OUT/${ci}-scripts.log
164164

165165
set +e
166166
}
@@ -183,7 +183,7 @@ function gg_run_test_scripts_release {
183183

184184
set -e
185185

186-
(find ./examples -mindepth 2 -maxdepth 2 -name 'tests.sh' -execdir time bash "{}" "$SRC/build-ci-release/bin" "$MNT/models" \;) 2>&1 | tee -a $OUT/${ci}-scripts.log
186+
(cd ./examples/gguf-split && time bash tests.sh "$SRC/build-ci-release/bin" "$MNT/models") 2>&1 | tee -a $OUT/${ci}-scripts.log
187187

188188
set +e
189189
}

0 commit comments

Comments
 (0)