Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EricWF committed Nov 28, 2023
1 parent cd8f14b commit c659bbe
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/callable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ on:



concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true


env:
Expand All @@ -46,7 +43,7 @@ env:

jobs:
stage1:
if: github.repository_owner == 'llvm' && ${{ contains(github.event.inputs.run_stages, 1) }}
if: ${{ contains(inputs.run_stages, 1) }}
runs-on: rizzo-runner-64-set
continue-on-error: false
strategy:
Expand Down Expand Up @@ -87,7 +84,7 @@ jobs:
**/CMakeOutput.log
**/crash_diagnostics/*
stage2:
if: github.repository_owner == 'llvm' && ${{ contains(github.event.inputs.run_stages, 2) }}
if: ${{ contains(github.event.inputs.run_stages, 2) }}
runs-on: rizzo-runner-64-set
needs: [ stage1 ]
continue-on-error: false
Expand Down Expand Up @@ -136,7 +133,7 @@ jobs:
**/CMakeOutput.log
**/crash_diagnostics/*
stage3:
if: github.repository_owner == 'llvm' && ${{ contains(github.event.inputs.run_stages, 3) }}
if: ${{ contains(github.event.inputs.run_stages, 3) }}
needs: [ stage1, stage2 ]
continue-on-error: false
strategy:
Expand Down

0 comments on commit c659bbe

Please sign in to comment.