-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add workflow for ci_test bad, use remote fmf plan
* Remove plan from role dir, it's too complicated and long to run tests from tmt * Use plan from linux-system-roles/tft-tests * Move getting datetime to testing-farm job where it's used * Add a workflow for running [citest_bad] * Bump sclorg/testing-farm-as-github-action to v3 Signed-off-by: Sergei Petrosian <spetrosi@redhat.com>
- Loading branch information
Showing
2 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,39 @@ | ||
--- | ||
name: Rerun failed testing farm tests | ||
name: Re-run failed testing farm tests | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
permissions: | ||
contents: read | ||
jobs: | ||
retest: | ||
citest_bad_rerun: | ||
if: | | ||
github.event.issue.pull_request | ||
&& github.event.comment.body == '[citest_bad]' | ||
&& (contains(github.event.comment.author_association, fromJson('["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR"]')) | ||
permissions: | ||
actions: write # for re-running failed jobs: https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#re-run-a-job-from-a-workflow-run | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Wait 10s until tft.yml workflow is created and skipped because new comment don't match [citest] | ||
run: sleep 10s | ||
|
||
- name: Re-run failed jobs for this PR | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
REPO: ${{ github.repository }} | ||
PR_TITLE: ${{ github.event.issue.title }} | ||
run: | | ||
RUN_ID=$(gh api "repos/$REPO/actions/workflows/tft.yml/runs?event=issue_comment" \ | ||
| jq -r '[.workflow_runs[] | select( .conclusion == "failure" ) | select ( .display_title="$PR_TITLE" ) | .id][0]') | ||
gh api --method POST repos/$REPO/actions/runs/$RUN_ID/rerun-failed-jobs | ||
PENDING_RUN=$(gh api "repos/$REPO/actions/workflows/tft.yml/runs?event=issue_comment" \ | ||
| jq -r "[.workflow_runs[] | select( .display_title == \"$PR_TITLE\") | \ | ||
select(.status == \"pending\" or .status == \"queued\" or .status == \"in_progress\") | .id][0]") | ||
# if pending run don't exist, take the last run with failure state | ||
if [ "$PENDING_RUN" = "null" ]; then | ||
RUN_ID=$(gh api "repos/$REPO/actions/workflows/tft.yml/runs?event=issue_comment" \ | ||
| jq -r "[.workflow_runs[] | select( .display_title == \"$PR_TITLE\" ) | select( .conclusion == \"failure\" ) | .id][0]") | ||
echo "Re-running workflow $RUN_ID" | ||
gh api --method POST repos/$REPO/actions/runs/$RUN_ID/rerun-failed-jobs | ||
else | ||
echo "The workflow $PENDING_RUN is still running, wait for it to finish to re-run" | ||
fi |