@@ -36,21 +36,19 @@ public class CreateAndCompileDefaultInoOnAllBoardsTest {
36
36
private static int myBuildCounter = 0 ;
37
37
private static int myTotalFails = 0 ;
38
38
private static int maxFails = 50 ;
39
- private static int mySkipAtStart = 0 ;
39
+ private static int mySkipAtStart = 240 ;
40
40
private BoardDescriptor mBoard ;
41
41
private static final String [] packageUrlsToIgnoreonAllOSes = {
42
42
// There is a newer version
43
43
"https://raw.githubusercontent.com/ElektorLabs/arduino/master/package_elektor-labs.com_ide-1.6.5_index.json" ,
44
44
//Third party url implies this is outdated (it also doesn't work)
45
45
"http://downloads.arduino.cc/packages/package_mkr1000_index.json" ,
46
- //http 403 error
46
+ //http 403 download error
47
47
"https://git.oschina.net/dfrobot/FireBeetle-ESP32/raw/master/package_esp32_index.json" ,
48
48
"http://www.arducam.com/downloads/ESP8266_UNO/package_ArduCAM_index.json" ,
49
49
"http://www.arducam.com/downloads/ESP32_UNO/package_ArduCAM_ESP32S_UNO_index.json" ,
50
50
//moved their stuff but didn't bother to update arduino site
51
51
"http://www.dwengo.org/sites/default/files/package_dwengo.org_dwenguino_index.json" ,
52
- //prebuild commands are based on arduino IDE way of working and will not work out of the boxin Sloeber
53
- "https://raw.githubusercontent.com/stm32duino/BoardManagerFiles/master/STM32/package_stm_index.json" ,
54
52
//arduino ide copies cores to core and platform.txt uses core/avr to point to cores/avr
55
53
"https://github.com/Infineon/Assets/releases/download/current/package_infineon_index.json" ,
56
54
//web site not responding
@@ -89,8 +87,8 @@ public class CreateAndCompileDefaultInoOnAllBoardsTest {
89
87
"RedBear Duo (Native USB Port)" , "RedBear Duo (RBLink USB Port)" ,
90
88
91
89
92
- // issue #660
93
- "Engimusing EFM32WG840" , "Engimusing EFM32WG842" ,
90
+ // issue #1152 (confirmed 2020 03 07 )
91
+ "Engimusing EFM32WG840" , "Engimusing EFM32WG842" , "Engimusing EFM32WG842F64" ,
94
92
95
93
// to investigate why it fails
96
94
@@ -326,7 +324,8 @@ public static void installAdditionalBoards() {
326
324
327
325
@ Test
328
326
public void testBoard () {
329
- Assume .assumeTrue ("Skipping first " + mySkipAtStart + " tests" , myBuildCounter ++ >= mySkipAtStart );
327
+ myBuildCounter ++;
328
+ Assume .assumeTrue ("Skipping first " + mySkipAtStart + " tests" , myBuildCounter >= mySkipAtStart );
330
329
Assume .assumeTrue ("To many fails. Stopping test" , myTotalFails < maxFails );
331
330
332
331
IPath templateFolder = Shared .getTemplateFolder ("CreateAndCompileTest" );
0 commit comments