Skip to content

Commit

Permalink
CI/status_rule: Add edge-case
Browse files Browse the repository at this point in the history
Pluto firmware jobs show the following errors:
- TOPDIR: command not found
- BASE_DIR: command not found
- CONFIG_DIR: command not found
These shouldn't be treated as errors, since the build finalizes
successfully. This commit modifies the `status_rule` file so that they
show up as warnings.

Signed-off-by: bia1708 <[email protected]>
  • Loading branch information
bia1708 committed Jan 29, 2024
1 parent 0359a0b commit 4b42035
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions CI/status_rule
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Errors
error /\bError\b/
error /(?i)no rule to make target/
error /(?i)command not found/

# Warnings
warning /^\bWarning\b/
warning /TOPDIR: command not found/
warning /BASE_DIR: command not found/
warning /CONFIG_DIR: command not found/
warning /(?i)cannot open/
warning /(?i)cannot create/
warning /(?i)cannot stat/
Expand All @@ -13,3 +11,8 @@ warning /(?i)no such file or directory/
warning /(?i)permission denied/
warning /(?i)Failed connect to artifactory.analog.com/
warning /(?i)unknown error while trying/

# Errors
error /\bError\b/
error /(?i)no rule to make target/
error /(?i)command not found/

0 comments on commit 4b42035

Please sign in to comment.