]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
tests : remove gh label test-whisper-cli-tiny-en (#2988)
authorDaniel Bevenius <redacted>
Wed, 2 Apr 2025 08:50:31 +0000 (10:50 +0200)
committerGitHub <redacted>
Wed, 2 Apr 2025 08:50:31 +0000 (10:50 +0200)
This commit removes test-whisper-cli-tiny-en from the gh label.

The motivation for this change is that until recently the tests were
disabled. But now that they are enabled some of the tests, specifically
the ci jobs that use sanatizers (e.g. thread-sanitizer) take a long time
to run as they are instrumented.
Some of these jobs also have matricies which means that there are
multiple jobs are created that all run these tests.
The suggestion here is to limit the number of tests that are run in the
ci jobs so cut down the CI build time.

tests/CMakeLists.txt

index 31edfc204ac1e45f032ac74217a3b1fac59e5e7b..7cdfed8228280a1257ad0b77a244b07c87ef197e 100644 (file)
@@ -24,7 +24,7 @@ add_test(NAME ${TEST_TARGET}
     COMMAND $<TARGET_FILE:whisper-cli>
     -m ${PROJECT_SOURCE_DIR}/models/for-tests-ggml-tiny.en.bin
     -f ${PROJECT_SOURCE_DIR}/samples/jfk.wav)
-set_tests_properties(${TEST_TARGET} PROPERTIES LABELS "tiny;en;gh")
+set_tests_properties(${TEST_TARGET} PROPERTIES LABELS "tiny;en")
 
 set(TEST_TARGET test-whisper-cli-base)
 add_test(NAME ${TEST_TARGET}