Build failing since past couple of iterations
So my build is failing with the reason of invalid schema, even though I did not make any changes to the reciple.yml
Here's the recipe file: https://github.com/antidoid/uos-thinkpad-e14-gen-5/blob/main/recipes/recipe.yml
Here's the error log: https://pastebin.com/7DJ2gEzM
Just wanted to know if there has been any change in the schema as I don't see any in the docs.
GitHub
uos-thinkpad-e14-gen-5/recipes/recipe.yml at main · antidoid/uos-th...
Linux, by me, for me. Contribute to antidoid/uos-thinkpad-e14-gen-5 development by creating an account on GitHub.
Pastebin
Error Logs - Pastebin.com
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
5 Replies
It's line 82 in your recipe. You have a null property
remove:
. You'll either want to comment that out or set it to remove: []
If you add the yaml-language-server
line at the top of your file, your language server supported text editor will highlight errors for you
I'm working on a way to make the error messages better so that things will be clearerThat fixed the first error
For the second error I noticed that the bre update-interval now takes string instead of list
In the examples , there's a way to set the that string to n hours, any clue how to set it to n days
For now I've set it up to "24h"
@fiftydinar or @xyny would you be able to check on that and update the schema if this holds true?
just inputting
7d
works
you inputted array, which is not accepted
I see that syntax in docs is unclear, hence why you inputted thatGot it
Thanks for clearing that out