From d61f561fdd2d8ac1acb27e3d6376df0faba7338c Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Wed, 13 Mar 2024 12:42:26 +0100 Subject: [PATCH] Use preCICE from v3.0.0 tag, tutorials from latest develop --- .github/workflows/system-tests.yaml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/system-tests.yaml b/.github/workflows/system-tests.yaml index dca2f5c5..0c2f5ecd 100644 --- a/.github/workflows/system-tests.yaml +++ b/.github/workflows/system-tests.yaml @@ -9,30 +9,21 @@ jobs: if: ${{ github.event.label.name == 'trigger-system-tests' }} runs-on: ubuntu-latest outputs: - refprecice: ${{ steps.refprecice.outputs.shorthash }} + reftutorials: ${{ steps.reftutorials.outputs.shorthash }} steps: - - id: refprecice + - id: reftutorials uses: nmbgeek/github-action-get-latest-commit@main with: owner: precice - repo: precice + repo: tutorials branch: develop - - test-job: - if: ${{ github.event.label.name == 'trigger-system-tests' }} - needs: gather-refs - runs-on: ubuntu-latest - steps: - - run: | - 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.outputs.refprecice }},OPENFOAM_EXECUTABLE:openfoam2306,OPENFOAM_ADAPTER_REF:${{ github.event.pull_request.head.sha }} + build_args: TUTORIALS_REF:${{ needs.gather-refs.outputs.reftutorials }},PRECICE_REF:v3.0.0,OPENFOAM_EXECUTABLE:openfoam2306,OPENFOAM_ADAPTER_REF:${{ github.event.pull_request.head.sha }} systests_branch: develop loglevel: "DEBUG"