Skip to main content

org.osbuild.ostree.checkout

Inputs for checkouts of ostree commits

This input takes a number of commits and will check them out to a temporary directory. The name of the directory is the commit id. Internally uses ostree checkout

Schema 1

{
"additionalProperties": false,
"required": [
"type",
"origin",
"references"
],
"properties": {
"type": {
"enum": [
"org.osbuild.ostree.checkout"
]
},
"origin": {
"description": "The origin of the input",
"type": "string",
"enum": [
"org.osbuild.source",
"org.osbuild.pipeline"
]
},
"references": {
"description": "Commit identifier to check out",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "object",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
".*": {
"type": "object",
"additionalProperties": false
}
}
},
{
"type": "array",
"additionalItems": false,
"minItems": 1,
"items": [
{
"type": "object",
"additionalProperties": false,
"required": [
"id"
],
"properties": {
"id": {
"type": "string"
},
"options": {
"type": "object",
"additionalProperties": false
}
}
}
]
}
]
}
}
}

Schema 2

{}