Skip to content
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

switch to colored emojis in bot/check-result.sh #270

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions bot/check-result.sh
Original file line number Diff line number Diff line change
Expand Up @@ -191,18 +191,18 @@ fi
# Note, final string must not contain any line breaks. Below example include
# line breaks for the sake of readability. In case of FAILURE, the structure is
# very similar (incl. information about Artefacts if any was produced), however,
# under Details some lines will be marked with :heavy_multiplication_x:
# under Details some lines will be marked with :x:
# <details>
# <summary>:grin: SUCCESS _(click triangle for details)_</summary>
# <dl>
# <dt>_Details_</dt>
# <dd>
# :heavy_check_mark: job output file <code>slurm-4682.out</code><br/>
# :heavy_check_mark: no message matching <code>ERROR: </code><br/>
# :heavy_check_mark: no message matching <code>FAILED: </code><br/>
# :heavy_check_mark: no message matching <code> required modules missing:</code><br/>
# :heavy_check_mark: found message(s) matching <code>No missing installations</code><br/>
# :heavy_check_mark: found message matching <code>tar.gz created!</code><br/>
# :white_check_mark: job output file <code>slurm-4682.out</code><br/>
# :white_check_mark: no message matching <code>ERROR: </code><br/>
# :white_check_mark: no message matching <code>FAILED: </code><br/>
# :white_check_mark: no message matching <code> required modules missing:</code><br/>
# :white_check_mark: found message(s) matching <code>No missing installations</code><br/>
# :white_check_mark: found message matching <code>tar.gz created!</code><br/>
# </dd>
# <dt>_Artefacts_</dt>
# <dd>
Expand Down Expand Up @@ -238,12 +238,12 @@ fi
# <dl>
# <dt>_Details_</dt>
# <dd>
# :heavy_check_mark: job output file <code>slurm-4682.out</code><br/>
# :heavy_multiplication_x: no message matching <code>ERROR: </code><br/>
# :heavy_check_mark: no message matching <code>FAILED: </code><br/>
# :heavy_multiplication_x: no message matching <code> required modules missing:</code><br/>
# :heavy_check_mark: found message(s) matching <code>No missing installations</code><br/>
# :heavy_check_mark: found message matching <code>tar.gz created!</code><br/>
# :white_check_mark: job output file <code>slurm-4682.out</code><br/>
# :x: no message matching <code>ERROR: </code><br/>
# :white_check_mark: no message matching <code>FAILED: </code><br/>
# :x: no message matching <code> required modules missing:</code><br/>
# :white_check_mark: found message(s) matching <code>No missing installations</code><br/>
# :white_check_mark: found message matching <code>tar.gz created!</code><br/>
# </dd>
# <dt>_Artefacts_</dt>
# <dd>
Expand All @@ -257,8 +257,8 @@ fi
comment_template="<details>__SUMMARY_FMT__<dl>__DETAILS_FMT____ARTEFACTS_FMT__</dl></details>"
comment_summary_fmt="<summary>__SUMMARY__ _(click triangle for details)_</summary>"
comment_details_fmt="<dt>_Details_</dt><dd>__DETAILS_LIST__</dd>"
comment_success_item_fmt=":heavy_check_mark: __ITEM__"
comment_failure_item_fmt=":heavy_multiplication_x: __ITEM__"
comment_success_item_fmt=":white_check_mark: __ITEM__"
comment_failure_item_fmt=":x: __ITEM__"
comment_artefacts_fmt="<dt>_Artefacts_</dt><dd>__ARTEFACTS_LIST__</dd>"
comment_artefact_details_fmt="<details>__ARTEFACT_SUMMARY____ARTEFACT_DETAILS__</details>"

Expand Down