test: add valid parent commit ID to test manifests
The previous value for parent was not a valid commit ID. In a regular compose request, the parent ref is resolved before being added as a source in the manifest. However, when building test manifests, since the values aren't real, we don't resolve the ostree refs, meaning that the test manifests weren't valid — they failed validity checks if run in osbuild. Replaced the fake parent ref with a fake parent commit ID "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff". The manifests still aren't buildable, since they don't point to a valid ostree repository or commit, but now they're at least valid (in the technical sense).
This commit is contained in:
parent
8636c7e1e0
commit
b9098c64c4
98 changed files with 297 additions and 300 deletions
|
|
@ -215,7 +215,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/edge",
|
||||
"url": "http://edge.example.com/repo",
|
||||
"parent": "test/edge"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {}
|
||||
},
|
||||
|
|
@ -235,7 +235,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/edge",
|
||||
"url": "http://edge.example.com/repo",
|
||||
"parent": "test/edge"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {
|
||||
"name": "edge-installer-users",
|
||||
|
|
@ -340,7 +340,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/iot",
|
||||
"url": "http://iot.example.com/repo",
|
||||
"parent": "test/iot"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {}
|
||||
},
|
||||
|
|
@ -357,7 +357,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/iot",
|
||||
"url": "http://iot.example.com/repo",
|
||||
"parent": "test/iot"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {
|
||||
"name": "iot-installer-users",
|
||||
|
|
@ -538,7 +538,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/edge",
|
||||
"url": "http://edge.example.com/repo",
|
||||
"parent": "test/edge"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {}
|
||||
},
|
||||
|
|
@ -555,7 +555,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/edge",
|
||||
"url": "http://edge.example.com/repo",
|
||||
"parent": "test/edge"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {
|
||||
"name": "edge-installer-users",
|
||||
|
|
@ -608,7 +608,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/edge",
|
||||
"url": "http://edge.example.com/repo",
|
||||
"parent": "test/edge"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {
|
||||
"customizations": {
|
||||
|
|
@ -641,7 +641,7 @@
|
|||
"ostree": {
|
||||
"ref": "test/edge",
|
||||
"url": "http://edge.example.com/repo",
|
||||
"parent": "test/edge"
|
||||
"parent": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||
},
|
||||
"blueprint": {}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue