Skip to content

Commit

Permalink
(CAT-1820) - add resuable workflow job for rerunning acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danadoherty639 committed Sep 9, 2024
1 parent fc38a30 commit 257bf6c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
workflow_dispatch:

env:
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

jobs:
Expand All @@ -28,7 +29,7 @@ jobs:
ruby_version: "3.2"
name: "spec (ruby ${{ matrix.ruby_version }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
secrets: "inherit"
secrets: inherit
with:
rake_task: 'spec:coverage'
ruby_version: ${{ matrix.ruby_version }}
Expand All @@ -52,9 +53,25 @@ jobs:
ruby_version: "3.2"
name: "acceptance (ruby ${{ matrix.ruby_version }} | ${{ matrix.os }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
secrets: "inherit"
secrets: inherit
with:
ruby_version: ${{ matrix.ruby_version }}
puppet_version: ${{ matrix.puppet_gem_version }}
rake_task: 'acceptance:local'
runs_on: ${{ matrix.os }}

rerun:
needs: "acceptance"
# (2) continue ONLY IF "acceptance" fails
if: always() && needs.acceptance.result == 'failure'

# (4) "use" the custom action to retrigger the failed "acceptance job" above
# NOTE: pass the SOURCE_GITHUB_TOKEN to the custom action because (a) it must have
# this to trigger the reusable workflow that restarts the failed job; and
# (b) custom actions do not have access to the calling workflow's secrets
name: "rerun"
uses: "puppetlabs/cat-github-actions/.github/workflows/workflow-restarter.yml@cat_1820"
secrets: inherit
with:
repo: ${{ github.repository }}
run_id: ${{ github.run_id }}
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# this to trigger the reusable workflow that restarts the failed job; and
# (b) custom actions do not have access to the calling workflow's secrets
- name: Trigger reusable workflow
uses: ./.github/actions/workflow-restarter-proxy
uses: "puppetlabs/cat-github-actions/.github/workflows/workflow-restarter.yml@cat_1820"
env:
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit 257bf6c

Please sign in to comment.