From b20f6c362699025f088c03e07f2424453e010b1f Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 11 Jun 2023 10:08:27 +0000 Subject: [PATCH] update lilac-yaml-schema.yaml --- lilac-yaml-schema.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lilac-yaml-schema.yaml b/lilac-yaml-schema.yaml index 7d17954f61aa..3ab36b595c0e 100644 --- a/lilac-yaml-schema.yaml +++ b/lilac-yaml-schema.yaml @@ -36,7 +36,20 @@ properties: description: Time limit in hours. The build will be aborted if it doesn't finish in time. Default is one hour. type: number repo_depends: - description: Packages in the repo to be built and installed before building the current package. + description: Packages in the repo that are direct dependencies of the current package. + type: array + items: + anyOf: + - type: string + description: Package (directory) name + - type: object + description: Package base (directory) as key and package name as value + minProperties: 1 + maxProperties: 1 + additionalProperties: + type: string + repo_makedepends: + description: Packages in the repo that are in makedepends or checkdepends of the current package. type: array items: anyOf: