Skip to content

Commit 0cfbdd7

Browse files
Exclude Windows from verification check for Task Library
PiperOrigin-RevId: 468282010
1 parent 527be55 commit 0cfbdd7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tensorflow_lite_support/tools/ci_build/builds/pip_smoke_test.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ function run_smoke_test() {
6161

6262
test_codegen
6363

64-
test_tfl_task_lib
64+
# On Mac and Ubuntu, verify that the task library builds successfully.
65+
if [[ "$OSTYPE" != "msys" ]]; then
66+
test_tfl_task_lib
67+
fi
6568

6669
# Deactivate from virtualenv.
6770
deactivate || source deactivate || \

0 commit comments

Comments
 (0)