-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buildkit Dev plugin #464
Buildkit Dev plugin #464
Conversation
Signed-off-by: Vitaliy Gulyy <[email protected]>
Happy path tests failed. Re-trigger by |
It looks like we need to change the regexp for the plugin icon verification (remove it at all)
|
Signed-off-by: Vitaliy Gulyy <[email protected]>
Happy path tests failed. Re-trigger by |
Signed-off-by: Vitaliy Gulyy <[email protected]>
Happy path tests failed. Re-trigger by |
Signed-off-by: Vitaliy Gulyy <[email protected]>
Signed-off-by: Vitaliy Gulyy <[email protected]>
Happy path tests failed. Re-trigger by |
1 similar comment
Happy path tests failed. Re-trigger by |
[ci-test] |
Happy path tests failed. Re-trigger by |
Signed-off-by: Vitaliy Gulyy <[email protected]>
Happy path tests failed. Re-trigger by |
Tests are broken for now so they will always fail when triggered. |
Should we remove the pattern for plugin images or it's better to update it?
It looks like it works, but I'm not sure do we need it at all. |
We can discuss this change in the issue you filed for it, let's keep it for now in this PR. |
Signed-off-by: Vitaliy Gulyy <[email protected]>
Happy path tests failed. Re-trigger by |
@vitaliy-guliy Tests should be fine now AFAIK... You just need to rebase on master. |
build/scripts/meta.yaml.schema
Outdated
"pattern": "[-._a-zA-Z0-9]+?\\.(?:svg|png)(?:\\?.*)?$" | ||
"pattern": "[-_a-zA-Z0-9]+?(?:\\.(?:svg|png))?(?:\\?.*)?$" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know regexes are generally write-only, but I'm having trouble understanding the change here. If .svg
or .png
is optional, it should be removed -- this regex reduces to
[-_a-zA-Z0-9](?:\\?.*)?$
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, we can omit checking for the extension here.
Signed-off-by: Vitaliy Gulyy <[email protected]>
Signed-off-by: Vitaliy Gulyy <[email protected]>
Happy path tests passed. |
@vitaliy-guliy Happy Path PR check [build 56] failed.Re-trigger by
Depending on failure reason, the artifacts or deployment may not be present. |
[ci-test] |
Happy path tests passed. |
[ci-test-happy-path] |
Happy path tests passed. |
Signed-off-by: Vitaliy Gulyy [email protected]
What does this PR do?
Adds Buildkit Dev plugin to build docker images inside running container.
Solves issue eclipse-che/che#16539
Need also to change a pattern for the plugin logo image eclipse-che/che#16894