Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit c059a5f

Browse files
committed
Fix netci.groovy braces after Linux/x86 change
1 parent 0d694a7 commit c059a5f

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

netci.groovy

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2167,14 +2167,17 @@ Constants.allScenarios.each { scenario ->
21672167
}
21682168
}
21692169
else {
2170+
// Non-Windows
21702171
if (architecture == 'arm64') {
21712172
if (scenario != 'default' && scenario != 'r2r' && scenario != 'gcstress0x3' && scenario != 'gcstress0xc') {
21722173
return
21732174
}
2174-
else if (architecture == 'x86') {
2175-
// Linux/x86 only want default test
2176-
if (scenario != 'default') {
2177-
return
2175+
}
2176+
else if (architecture == 'x86') {
2177+
// Linux/x86 only want default test
2178+
if (scenario != 'default') {
2179+
return
2180+
}
21782181
}
21792182
}
21802183

0 commit comments

Comments
 (0)