Commit 3ea331b 1 parent 8ebcf7a commit 3ea331b Copy full SHA for 3ea331b
File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,10 @@ declare_args() {
130
130
if (slc_generate || slc_reuse_files ) {
131
131
silabs_gen_folder = slc_gen_path
132
132
} else {
133
- print (" Using pre-generate files" )
133
+ if (! chip_build_all_platform_tests ) {
134
+ # We can't print to the console when running our tests in the CSA CI otherwise CI fails.
135
+ print (" Using pre-generate files" )
136
+ }
134
137
silabs_gen_folder = sl_pre_gen_path
135
138
}
136
139
Original file line number Diff line number Diff line change @@ -82,9 +82,11 @@ if (silabs_board == "") {
82
82
83
83
# Workaround to enable unit-tests when depending on files that import this gni
84
84
if (silabs_board == " " && sl_build_unit_tests ) {
85
- print (" Building the unit test configuration since silabs_board is not set." )
86
- print (" If you are building the efr32 test_driver, a board is required." )
87
-
85
+ if (! chip_build_all_platform_tests ) {
86
+ # We can't print to the console when running our tests in the CSA CI otherwise CI fails.
87
+ print (" Building the unit test configuration since silabs_board is not set." )
88
+ print (" If you are building the efr32 test_driver, a board is required." )
89
+ }
88
90
silabs_board = " unit-test"
89
91
silabs_family = " unit-test"
90
92
silabs_mcu = " unit-test"
You can’t perform that action at this time.
0 commit comments