Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/system-tests-latest-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ on:
- cron: "0 4 * * *"
timezone: "Europe/Berlin"
workflow_dispatch:
inputs:
suites:
description: 'Comma-separated test suites to run'
default: 'release_test'
required: false
type: string
system_tests_branch:
description: 'Branch to take the system tests from'
default: 'develop'
required: true
type: string

jobs:
gather-refs:
Expand Down Expand Up @@ -162,7 +173,7 @@ jobs:
needs: gather-refs
uses: precice/tutorials/.github/workflows/run_testsuite_workflow.yml@develop
with:
suites: release_test
suites: ${{ inputs.suites }}
build_args: "PLATFORM:ubuntu_2404,\
PRECICE_REF:${{ needs.gather-refs.outputs.ref-precice }},\
PYTHON_BINDINGS_REF:${{ needs.gather-refs.outputs.ref-python-bindings }},\
Expand All @@ -173,5 +184,5 @@ jobs:
OPENFOAM_ADAPTER_REF:${{ needs.gather-refs.outputs.ref-openfoam-adapter }},\
SU2_ADAPTER_REF:${{ needs.gather-refs.outputs.ref-su2-adapter }},\
TUTORIALS_REF:${{ needs.gather-refs.outputs.ref-tutorials }}"
system_tests_branch: develop
system_tests_branch: ${{ inputs.system_tests_branch }}
log_level: "INFO"