aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdheli Tavares <adheli.tavares@est.tech>2023-10-19 10:14:49 +0000
committerGerrit Code Review <gerrit@onap.org>2023-10-19 10:14:49 +0000
commit262046499e652b7cb8024f27812527b388862443 (patch)
treee74818e8a849bbbc610110b34a538ba228545611
parent9c12311d7715c426a8311b6bcabbd6342c5aa95a (diff)
parent010297e6896811d1cbb10aa1b189e7e65976fd3b (diff)
Merge "Update report script filters"
-rwxr-xr-xintegration/src/main/scripts/reports/pf_status_report.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/integration/src/main/scripts/reports/pf_status_report.sh b/integration/src/main/scripts/reports/pf_status_report.sh
index 306985e9..76cdcbe9 100755
--- a/integration/src/main/scripts/reports/pf_status_report.sh
+++ b/integration/src/main/scripts/reports/pf_status_report.sh
@@ -3,7 +3,7 @@
# ============LICENSE_START================================================
# ONAP
# =========================================================================
-# Copyright (C) 2022 Nordix Foundation.
+# Copyright (C) 2022-2023 Nordix Foundation.
# =========================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -96,6 +96,7 @@ echo "------------"
grep "job-status-red" "$jenkins_report_temp_file" |
grep -v stage |
+ grep -v release-merge |
cut -f1 -d' ' |
sed 's/_/\//' |
awk '{printf("https://jenkins.onap.org/%s\n", $1)}'
@@ -114,6 +115,7 @@ echo ""
echo "invalid jobs"
echo "------------"
grep -v -E "(job-status-red|job-status-yellow|job-status-blue)" "$jenkins_report_temp_file" |
+ grep -v stage |
cut -f1 -d' ' |
sed 's/_/\//' |
awk '{printf("https://jenkins.onap.org/%s\n", $1)}'