-
Notifications
You must be signed in to change notification settings - Fork 63
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
Composite commands label and id #18
Milestone
Comments
Proposal reviewed and approved with the following requirements:
|
@groeges I would say that the group can be specified for a composite and its commands can belong to distinct groups: commands:
- exec:
id: build
commandLine: "./build.sh"
component: tooling
group:
kind: build
- exec:
id: run
commandLine: "./run.sh"
component: tooling
group:
kind: run
- composite:
id: buildAndRun
label: Build and Run
commands:
- build
- run
parallel: false
group:
kind: run |
davidfestal
added a commit
that referenced
this issue
Apr 3, 2020
Signed-off-by: David Festal <dfestal@redhat.com>
12 tasks
davidfestal
added a commit
that referenced
this issue
Apr 22, 2020
* Implement agreement on issue #18 * Implement agreement on issue #17 * Implement agreement on issue #21 * Implement agreement on issue #22 * Implement agreement on issue #27 * Implement agreement on issue #9 * Implement agreement on issue #10 * Fix PR comments about issue #9 PR comment #35 (comment) * Fix PR comments about issue #17 PR comment #35 (comment) * Implement agreement on issue #14 and #19 * Add the spring boot example * Implement agreement on issue #32 * Fix last PR comments Signed-off-by: David Festal <dfestal@redhat.com> Co-Authored-By: Sergii Leshchenko <sleshche@redhat.com>
3 tasks
Implemented |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Composite currently only has a
label
. But that appears to be something that would be visible in the Che UI. It should have anid
as well so that tools like odo can reference composite commands with the following requirements:label
andid
id
is mandatoryid
used to reference parent devfiles commands (notlabel
)Sample devfile snippet to show example of usage/format:
The text was updated successfully, but these errors were encountered: