Advance M7 workflows and release operations
This commit is contained in:
20
docs/status/ci-lane-report.schema.json
Normal file
20
docs/status/ci-lane-report.schema.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://blender-web.local/schemas/ci-lane-report-v1.json",
|
||||
"title": "Web Blender CI lane report",
|
||||
"type": "object",
|
||||
"required": ["schemaVersion", "lane", "status", "generatedAt", "commit", "environment", "bindings", "records", "retentionDays"],
|
||||
"properties": {
|
||||
"schemaVersion": { "const": 1 },
|
||||
"lane": { "enum": ["quick", "chromium", "release"] },
|
||||
"status": { "enum": ["READY", "FAILED"] },
|
||||
"generatedAt": { "type": "string", "format": "date-time" },
|
||||
"commit": { "type": "string", "pattern": "^[a-f0-9]{40}$" },
|
||||
"environment": { "type": "object" },
|
||||
"bindings": { "type": "object" },
|
||||
"records": { "type": "array", "minItems": 1 },
|
||||
"retentionDays": { "enum": [7, 14, 30] }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user