-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #302 from yohamta/fix-wemin-web-issues
admin-web: fix filtering issue
- Loading branch information
Showing
2 changed files
with
39 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
group: example group | ||
env: | ||
LOG_DIR: ${HOME}/logs | ||
logDir: ${LOG_DIR} | ||
params: foo bar | ||
steps: | ||
- name: "check precondition" | ||
command: echo start | ||
preconditions: | ||
- condition: "`echo $1`" | ||
expected: foo | ||
- name: "print foo" | ||
command: echo $1 | ||
depends: | ||
- "check precondition" | ||
- name: "print bar" | ||
command: echo $2 | ||
depends: | ||
- "print foo" | ||
- name: "failure and continue" | ||
command: "false" | ||
continueOn: | ||
failure: true | ||
depends: | ||
- "print bar" | ||
- name: "print done" | ||
command: echo done! | ||
depends: | ||
- "failure and continue" | ||
handlerOn: | ||
exit: | ||
command: echo finished! | ||
success: | ||
command: echo success! | ||
failure: | ||
command: echo failed! | ||
cancel: | ||
group: example group | ||
env: | ||
LOG_DIR: ${HOME}/logs | ||
logDir: ${LOG_DIR} | ||
params: foo bar | ||
tags: daily | ||
steps: | ||
- name: "check precondition" | ||
command: echo start | ||
preconditions: | ||
- condition: "`echo $1`" | ||
expected: foo | ||
- name: "print foo" | ||
command: echo $1 | ||
depends: | ||
- "check precondition" | ||
- name: "print bar" | ||
command: echo $2 | ||
depends: | ||
- "print foo" | ||
- name: "failure and continue" | ||
command: "false" | ||
continueOn: | ||
failure: true | ||
depends: | ||
- "print bar" | ||
- name: "print done" | ||
command: echo done! | ||
depends: | ||
- "failure and continue" | ||
handlerOn: | ||
exit: | ||
command: echo finished! | ||
success: | ||
command: echo success! | ||
failure: | ||
command: echo failed! | ||
cancel: | ||
command: echo canceled! |