diff --git a/.github/scripts/merge-gates-reports.sh b/.github/scripts/merge-gates-reports.sh index 11b5ad3f4e5..6d616d2f8cb 100755 --- a/.github/scripts/merge-gates-reports.sh +++ b/.github/scripts/merge-gates-reports.sh @@ -1,9 +1,6 @@ #!/bin/bash set -eu -REPORT_NAME=$1 -NAME_PLURAL=""$REPORT_NAME"s" - combined_reports='{"programs": []}' # Iterate over each report and merge them @@ -15,7 +12,5 @@ for report in ./reports/*; do combined_reports=$(jq --argjson COMBINED_REPORTS "$combined_reports" '.programs += $COMBINED_REPORTS.programs' <<< "$(cat "$report/$FILE_PATH")") done -# Wrap the merged memory reports into a new object as to keep the $NAME_PLURAL key - echo "$combined_reports"