Skip to content

Commit

Permalink
FORCING A FAILURE
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Didrichsen <[email protected]>
  • Loading branch information
gavindidrichsen committed Apr 23, 2024
1 parent f316ada commit bd253bb
Showing 1 changed file with 12 additions and 27 deletions.
39 changes: 12 additions & 27 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,21 @@ on:
jobs:

spec:
strategy:
fail-fast: false
matrix:
ruby_version:
- "2.7"
- "3.2"
name: "spec (ruby ${{ matrix.ruby_version }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
secrets: "inherit"
with:
ruby_version: ${{ matrix.ruby_version }}
runs-on: ubuntu-latest
steps:
- name: Check outcome
run: |
echo "Workflow succeeded"
exit 0
acceptance:
needs: "spec"
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "windows-2019"
ruby_version:
- "2.7"
- "3.2"
name: "acceptance (ruby ${{ matrix.ruby_version }} | ${{ matrix.os }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
secrets: "inherit"
with:
ruby_version: ${{ matrix.ruby_version }}
rake_task: 'acceptance:local'
runs_on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Check outcome
run: |
echo "Workflow failed"
exit 1
on-failure-workflow-restarter-proxy:
# (1) run this job after the "acceptance" job and...
Expand Down

0 comments on commit bd253bb

Please sign in to comment.