Skip to content

Commit

Permalink
Merge pull request #17613 from mozilla/nightly-merge-reports
Browse files Browse the repository at this point in the history
fix nightly issue
  • Loading branch information
ashrivastava-qa authored Sep 16, 2024
2 parents 99181a1 + 960affc commit 1328ec8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,13 @@ jobs:
JOB_STATUS=$(echo $RESPONSE | jq -r '.items[] | .name + "-" + .status')
echo "ALL JOB_STATUS:"
echo $JOB_STATUS
PENDING=$(echo $RESPONSE | jq -r '.items[] | select(.status == "blocked" or .status == "running" or .status == "not_running") | select(.name | startswith("Tests Complete") | not) | select(.name | startswith("Merge Playwright Reports") | not) | select(.name | startswith("Check all required jobs are complete") | not ) | .name')
PENDING=$(echo $RESPONSE | jq -r '.items[] | select(.status == "blocked" or .status == "running" or .status == "not_running") | select(.name | startswith("Tests Complete") | not) |
select(.name | startswith("Merge Playwright Reports") | not) |
select(.name | startswith("Deploy Storybooks") | not) |
select(.name | startswith("Create FxA Image") | not) |
select(.name | startswith("Deploy FxA Image") | not) |
select(.name | startswith("Deploy CI Images") | not) |
select(.name | startswith("Check all required jobs are complete") | not ) | .name')
echo "PENDING JOBS OF INTEREST:"
echo $PENDING
if [[ -z "$PENDING" ]]; then
Expand Down

0 comments on commit 1328ec8

Please sign in to comment.