-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added notify_on * added update_stat_file() (wrong rebase) --------- Co-authored-by: dbeltran <[email protected]>
- Loading branch information
1 parent
1f5ded1
commit 156b6e7
Showing
5 changed files
with
75 additions
and
18 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
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 |
---|---|---|
|
@@ -221,7 +221,10 @@ Example: | |
# Default: False | ||
NOTIFICATIONS: True | ||
# Mail address where notifications will be received | ||
TO: [email protected] [email protected] | ||
TO: | ||
- [email protected] | ||
- [email protected] | ||
2. Then you have to define for which jobs you want to be notified. | ||
|
||
|
@@ -232,7 +235,7 @@ Edit ``jobs_cxxx.yml`` in the ``conf`` folder of the experiment. | |
defined on the parameter ``NOTIFY_ON`` | ||
|
||
.. hint:: | ||
Remember that you can define more than one job status divided by a whitespace. | ||
Remember that you can define more than one job status separated by a whitespace, a comma (`,`), or using a list. | ||
|
||
Example: | ||
:: | ||
|
@@ -246,6 +249,16 @@ Example: | |
FILE: LOCAL_SETUP.sh | ||
PLATFORM: LOCAL | ||
NOTIFY_ON: FAILED COMPLETED | ||
EXAMPLE_JOB: | ||
FILE: EXAMPLE_JOB.sh | ||
PLATFORM: LOCAL | ||
NOTIFY_ON: FAILED, COMPLETED | ||
EXAMPLE_JOB_2: | ||
FILE: EXAMPLE_JOB_2.sh | ||
PLATFORM: LOCAL | ||
NOTIFY_ON: | ||
- FAILED | ||
- COMPLETED | ||
How to add a new platform | ||
------------------------- | ||
|
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