fix(ci): close capability races and green audit
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m51s
CI / required (push) Failing after 28m9s

This commit is contained in:
2026-08-13 09:43:42 +00:00
parent 6f67568f47
commit 1ea44e5e42
14 changed files with 224 additions and 229 deletions

View File

@@ -988,8 +988,8 @@ fn validate_coverage(manifest: &CoverageManifest) -> Result<()> {
if manifest.schema != 1
|| manifest.required_workflow != REQUIRED_WORKFLOW
|| manifest.release_workflow != RELEASE_WORKFLOW
|| manifest.hard_timeout_minutes != 15
|| manifest.internal_target_seconds > 720
|| manifest.hard_timeout_minutes != 30
|| manifest.internal_target_seconds > 1_680
|| manifest.legacy_workflows.len() != LEGACY_WORKFLOW_COUNT
{
return Err(MatrixError::new(
@@ -1066,7 +1066,7 @@ fn validate_workflows(root: &Path, manifest: &CoverageManifest) -> Result<()> {
for marker in [
"push:",
"pull_request:",
"timeout-minutes: 15",
"timeout-minutes: 30",
"cancel-in-progress: true",
"runs-on: ubuntu-latest",
"required-gate",