Do not retry lint or clang tidy tests. (flutter/engine#42498)

Retries on lints and clang tidy were hiding the issues as timeouts rather than providing the fail signal right away.

Bug: https://github.com/flutter/flutter/issues/128083

[C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
This commit is contained in:
godofredoc 2023-06-01 16:48:20 -07:00 committed by GitHub
parent bc1510d361
commit a11ac35035
3 changed files with 5 additions and 0 deletions

View File

@ -61,6 +61,7 @@
"--shard-id=1",
"--shard-variants=android_debug_arm64"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
@ -86,6 +87,7 @@
"--shard-id=0",
"--shard-variants=host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]

View File

@ -70,6 +70,7 @@
"--shard-id=1",
"--shard-variants=ios_debug_sim"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
@ -99,6 +100,7 @@
"--shard-id=0",
"--shard-variants=host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]

View File

@ -11,6 +11,7 @@
"tests": [
{
"name": "licenses check",
"max_attempts": 1,
"script": "flutter/ci/licenses.sh"
}
]