From ed255bfd32b0a2bc31c71eca402f74261d95c15b Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Sat, 15 Aug 2026 14:20:41 +0200 Subject: [PATCH 1/2] Add a workflow to trigger the system tests --- .github/workflows/system-tests.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/system-tests.yml diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml new file mode 100644 index 0000000..6504168 --- /dev/null +++ b/.github/workflows/system-tests.yml @@ -0,0 +1,13 @@ +name: System tests + +on: + pull_request: + types: [labeled] + +jobs: + run-system-tests: + if: ${{ github.event.label.name == 'trigger-system-tests' }} + uses: precice/tutorials/.github/workflows/system-tests.yml@develop + with: + suites: julia-bindings + build_args: JULIA_BINDINGS_PR:${{ github.event.number }},JULIA_BINDINGS_REF:${{ github.event.pull_request.head.sha }} \ No newline at end of file From 95e3cb50e13391954715fb670c1fd7720fecb499 Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Sat, 15 Aug 2026 14:26:56 +0200 Subject: [PATCH 2/2] Remove unused JULIA_BINDINGS_PR --- .github/workflows/system-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml index 6504168..c064a58 100644 --- a/.github/workflows/system-tests.yml +++ b/.github/workflows/system-tests.yml @@ -10,4 +10,4 @@ jobs: uses: precice/tutorials/.github/workflows/system-tests.yml@develop with: suites: julia-bindings - build_args: JULIA_BINDINGS_PR:${{ github.event.number }},JULIA_BINDINGS_REF:${{ github.event.pull_request.head.sha }} \ No newline at end of file + build_args: JULIA_BINDINGS_REF:${{ github.event.pull_request.head.sha }} \ No newline at end of file