File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -826,16 +826,20 @@ if [ -z ${GG_BUILD_LOW_PERF} ]; then
826
826
fi
827
827
828
828
ret=0
829
-
830
- test $ret -eq 0 && gg_run ctest_debug
829
+ if [ -z ${GG_BUILD_SYCL} ]; then
830
+ # SYCL build breaks with debug build flags
831
+ test $ret -eq 0 && gg_run ctest_debug
832
+ fi
831
833
test $ret -eq 0 && gg_run ctest_release
832
834
833
835
if [ -z ${GG_BUILD_LOW_PERF} ]; then
834
836
test $ret -eq 0 && gg_run embd_bge_small
835
837
test $ret -eq 0 && gg_run rerank_tiny
836
838
837
839
if [ -z ${GG_BUILD_CLOUD} ] || [ ${GG_BUILD_EXTRA_TESTS_0} ]; then
838
- test $ret -eq 0 && gg_run test_scripts_debug
840
+ if [ -z ${GG_BUILD_SYCL} ]; then
841
+ test $ret -eq 0 && gg_run test_scripts_debug
842
+ fi
839
843
test $ret -eq 0 && gg_run test_scripts_release
840
844
fi
841
845
@@ -846,7 +850,9 @@ if [ -z ${GG_BUILD_LOW_PERF} ]; then
846
850
test $ret -eq 0 && gg_run pythia_2_8b
847
851
# test $ret -eq 0 && gg_run open_llama_7b_v2
848
852
fi
849
- test $ret -eq 0 && gg_run ctest_with_model_debug
853
+ if [ -z ${GG_BUILD_SYCL} ]; then
854
+ test $ret -eq 0 && gg_run ctest_with_model_debug
855
+ fi
850
856
test $ret -eq 0 && gg_run ctest_with_model_release
851
857
fi
852
858
fi
You can’t perform that action at this time.
0 commit comments