Skip to content

Commit fb38943

Browse files
committed
add more to test script, get closer to install.sh parity
1 parent 87fb012 commit fb38943

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

exe/ci_system_check.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@
2424
"http://arduino.esp8266.com/stable/package_esp8266com_index.json"
2525
]
2626

27-
result = arduino_cmd.set_pref("boardsmanager.additional.urls", urls.join(","))
28-
got_problem = true unless result
27+
got_problem = true unless arduino_cmd.set_pref("boardsmanager.additional.urls", urls.join(","))
2928

3029
got_problem = true unless arduino_cmd.install_board("arduino:sam")
3130
got_problem = true unless arduino_cmd.install_library("USBHost")
3231
got_problem = true unless arduino_cmd.library_is_indexed
3332

33+
got_problem = true unless arduino_cmd.set_pref("compiler.warning_level", "all")
34+
3435
abort if got_problem
3536
exit(0)

0 commit comments

Comments
 (0)