Skip to content

Commit

Permalink
Fix levels
Browse files Browse the repository at this point in the history
  • Loading branch information
MakisH committed Mar 13, 2024
1 parent ec1f651 commit 3963c64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/system-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
if: ${{ github.event.label.name == 'trigger-system-tests' }}
runs-on: ubuntu-latest
outputs:
output_refprecice: ${{ steps.refprecice.outputs.shorthash }}
refprecice: ${{ steps.refprecice.outputs.shorthash }}
steps:
- id: refprecice
uses: nmbgeek/github-action-get-latest-commit@main
Expand All @@ -25,14 +25,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: |
echo "${{ needs.gather-refs.output_refprecice }}" >> $GITHUB_OUTPUT
echo "${{ needs.gather-refs.outputs.refprecice }}" >> $GITHUB_OUTPUT
trigger-system-tests:
if: ${{ github.event.label.name == 'trigger-system-tests' }}
needs: gather-refs
uses: precice/tutorials/.github/workflows/run_testsuite_workflow.yml@develop
with:
suites: openfoam_adapter_pr
build_args: TUTORIALS_REF:develop,PRECICE_REF:${{ needs.gather-refs.output_refprecice }},OPENFOAM_EXECUTABLE:openfoam2306,OPENFOAM_ADAPTER_REF:${{ github.event.pull_request.head.sha }}
build_args: TUTORIALS_REF:develop,PRECICE_REF:${{ needs.gather-refs.outputs.refprecice }},OPENFOAM_EXECUTABLE:openfoam2306,OPENFOAM_ADAPTER_REF:${{ github.event.pull_request.head.sha }}
systests_branch: develop
loglevel: "DEBUG"

0 comments on commit 3963c64

Please sign in to comment.