diff --git a/.github/workflows/system-tests-latest-components.yml b/.github/workflows/system-tests-latest-components.yml index 095f90cd2..5ac879ab7 100644 --- a/.github/workflows/system-tests-latest-components.yml +++ b/.github/workflows/system-tests-latest-components.yml @@ -70,59 +70,59 @@ jobs: - id: report-refs name: Report Git refs run: | - printf 'preCICE: ${{ steps.ref-precice.outputs.shorthash }}\n ${{ steps.ref-precice.outputs.description }}\n----------\n' - printf 'Python bindings: ${{ steps.ref-python-bindings.outputs.shorthash }}\n ${{ steps.ref-python-bindings.outputs.description }}\n----------\n' - printf 'CalculiX adapter: ${{ steps.ref-calculix-adapter.outputs.shorthash }}\n ${{ steps.ref-calculix-adapter.outputs.description }}\n----------\n' - printf 'FEniCS adapter: ${{ steps.ref-fenics-adapter.outputs.shorthash }}\n ${{ steps.ref-fenics-adapter.outputs.description }}\n----------\n' - printf 'OpenFOAM adapter: ${{ steps.ref-openfoam-adapter.outputs.shorthash }} ${{ steps.ref-openfoam-adapter.outputs.description }}\n----------\n' - printf 'SU2 adapter: ${{ steps.ref-su2-adapter.outputs.shorthash }}\n ${{ steps.ref-su2-adapter.outputs.description }}\n----------\n' - printf 'Tutorials: ${{ steps.ref-tutorials.outputs.shorthash }} ${{ steps.ref-tutorials.outputs.description }}\n----------\n' + printf '%q\n' "preCICE: ${{ steps.ref-precice.outputs.shorthash }}\n ${{ steps.ref-precice.outputs.description }}\n----------\n" + printf '%q\n' "Python bindings: ${{ steps.ref-python-bindings.outputs.shorthash }}\n ${{ steps.ref-python-bindings.outputs.description }}\n----------\n" + printf '%q\n' "CalculiX adapter: ${{ steps.ref-calculix-adapter.outputs.shorthash }}\n ${{ steps.ref-calculix-adapter.outputs.description }}\n----------\n" + printf '%q\n' "FEniCS adapter: ${{ steps.ref-fenics-adapter.outputs.shorthash }}\n ${{ steps.ref-fenics-adapter.outputs.description }}\n----------\n" + printf '%q\n' "OpenFOAM adapter: ${{ steps.ref-openfoam-adapter.outputs.shorthash }} ${{ steps.ref-openfoam-adapter.outputs.description }}\n----------\n" + printf '%q\n' "SU2 adapter: ${{ steps.ref-su2-adapter.outputs.shorthash }}\n ${{ steps.ref-su2-adapter.outputs.description }}\n----------\n" + printf '%q\n' "Tutorials: ${{ steps.ref-tutorials.outputs.shorthash }} ${{ steps.ref-tutorials.outputs.description }}\n----------\n" - id: summary name: Prepare Markdown summary run: | - echo "## Git references of latest (develop) components" >> $GITHUB_STEP_SUMMARY - echo "### preCICE" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-precice.outputs.shorthash }}\`](https://github.com/precice/precice/commit/${{ steps.ref-precice.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-precice.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### Python bindings" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-python-bindings.outputs.shorthash }}\`](https://github.com/precice/python-bindings/commit/${{ steps.ref-python-bindings.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-python-bindings.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### CalculiX adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-calculix-adapter.outputs.shorthash }}\`](https://github.com/precice/calculix-adapter/commit/${{ steps.ref-calculix-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-calculix-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### FEniCS adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-fenics-adapter.outputs.shorthash }}\`](https://github.com/precice/fenics-adapter/commit/${{ steps.ref-fenics-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-fenics-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### OpenFOAM adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-openfoam-adapter.outputs.shorthash }}\`](https://github.com/precice/openfoam-adapter/commit/${{ steps.ref-openfoam-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-openfoam-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### SU2 adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-su2-adapter.outputs.shorthash }}\`](https://github.com/precice/su2-adapter/commit/${{ steps.ref-su2-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-su2-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### Tutorials" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-tutorials.outputs.shorthash }}\`](https://github.com/precice/tutorials/commit/${{ steps.ref-tutorials.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-tutorials.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "## Git references of latest (develop) components" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### preCICE" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-precice.outputs.shorthash }}\`](https://github.com/precice/precice/commit/${{ steps.ref-precice.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-precice.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### Python bindings" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-python-bindings.outputs.shorthash }}\`](https://github.com/precice/python-bindings/commit/${{ steps.ref-python-bindings.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-python-bindings.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### CalculiX adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-calculix-adapter.outputs.shorthash }}\`](https://github.com/precice/calculix-adapter/commit/${{ steps.ref-calculix-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-calculix-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### FEniCS adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-fenics-adapter.outputs.shorthash }}\`](https://github.com/precice/fenics-adapter/commit/${{ steps.ref-fenics-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-fenics-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### OpenFOAM adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-openfoam-adapter.outputs.shorthash }}\`](https://github.com/precice/openfoam-adapter/commit/${{ steps.ref-openfoam-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-openfoam-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### SU2 adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-su2-adapter.outputs.shorthash }}\`](https://github.com/precice/su2-adapter/commit/${{ steps.ref-su2-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-su2-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### Tutorials" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-tutorials.outputs.shorthash }}\`](https://github.com/precice/tutorials/commit/${{ steps.ref-tutorials.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-tutorials.outputs.description }}"' >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY run-system-tests: name: Trigger system tests diff --git a/.github/workflows/system-tests-pr.yml b/.github/workflows/system-tests-pr.yml index f7d0531f9..93b919878 100644 --- a/.github/workflows/system-tests-pr.yml +++ b/.github/workflows/system-tests-pr.yml @@ -61,55 +61,55 @@ jobs: - id: report-refs name: Report Git refs run: | - printf 'preCICE: ${{ steps.ref-precice.outputs.shorthash }}\n ${{ steps.ref-precice.outputs.description }}\n----------\n' - printf 'Python bindings: ${{ steps.ref-python-bindings.outputs.shorthash }}\n ${{ steps.ref-python-bindings.outputs.description }}\n----------\n' - printf 'CalculiX adapter: ${{ steps.ref-calculix-adapter.outputs.shorthash }}\n ${{ steps.ref-calculix-adapter.outputs.description }}\n----------\n' - printf 'FEniCS adapter: ${{ steps.ref-fenics-adapter.outputs.shorthash }}\n ${{ steps.ref-fenics-adapter.outputs.description }}\n----------\n' - printf 'OpenFOAM adapter: ${{ steps.ref-openfoam-adapter.outputs.shorthash }} ${{ steps.ref-openfoam-adapter.outputs.description }}\n----------\n' - printf 'SU2 adapter: ${{ steps.ref-su2-adapter.outputs.shorthash }}\n ${{ steps.ref-su2-adapter.outputs.description }}\n----------\n' + printf '%q\n' "preCICE: ${{ steps.ref-precice.outputs.shorthash }}\n ${{ steps.ref-precice.outputs.description }}\n----------\n" + printf '%q\n' "Python bindings: ${{ steps.ref-python-bindings.outputs.shorthash }}\n ${{ steps.ref-python-bindings.outputs.description }}\n----------\n" + printf '%q\n' "CalculiX adapter: ${{ steps.ref-calculix-adapter.outputs.shorthash }}\n ${{ steps.ref-calculix-adapter.outputs.description }}\n----------\n" + printf '%q\n' "FEniCS adapter: ${{ steps.ref-fenics-adapter.outputs.shorthash }}\n ${{ steps.ref-fenics-adapter.outputs.description }}\n----------\n" + printf '%q\n' "OpenFOAM adapter: ${{ steps.ref-openfoam-adapter.outputs.shorthash }} ${{ steps.ref-openfoam-adapter.outputs.description }}\n----------\n" + printf '%q\n' "SU2 adapter: ${{ steps.ref-su2-adapter.outputs.shorthash }}\n ${{ steps.ref-su2-adapter.outputs.description }}\n----------\n" - id: summary name: Prepare Markdown summary run: | - echo "## Git references of latest (develop) components" >> $GITHUB_STEP_SUMMARY - echo "### preCICE" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-precice.outputs.shorthash }}\`](https://github.com/precice/precice/commit/${{ steps.ref-precice.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-precice.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### Python bindings" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-python-bindings.outputs.shorthash }}\`](https://github.com/precice/python-bindings/commit/${{ steps.ref-python-bindings.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-python-bindings.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### CalculiX adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-calculix-adapter.outputs.shorthash }}\`](https://github.com/precice/calculix-adapter/commit/${{ steps.ref-calculix-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-calculix-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### FEniCS adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-fenics-adapter.outputs.shorthash }}\`](https://github.com/precice/fenics-adapter/commit/${{ steps.ref-fenics-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-fenics-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### OpenFOAM adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-openfoam-adapter.outputs.shorthash }}\`](https://github.com/precice/openfoam-adapter/commit/${{ steps.ref-openfoam-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-openfoam-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### SU2 adapter" >> $GITHUB_STEP_SUMMARY - echo "Reference: [\`${{ steps.ref-su2-adapter.outputs.shorthash }}\`](https://github.com/precice/su2-adapter/commit/${{ steps.ref-su2-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY - echo "Description:" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "${{ steps.ref-su2-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - echo "### Tutorials" >> $GITHUB_STEP_SUMMARY - echo "Reference (pull request): \`${{ github.event.pull_request.head.sha }}\`" >> $GITHUB_STEP_SUMMARY - echo "Pull request number: [${{ github.event.number }}](https://github.com/precice/tutorials/pull/${{ github.event.number }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "## Git references of latest (develop) components" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### preCICE" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-precice.outputs.shorthash }}\`](https://github.com/precice/precice/commit/${{ steps.ref-precice.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-precice.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### Python bindings" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-python-bindings.outputs.shorthash }}\`](https://github.com/precice/python-bindings/commit/${{ steps.ref-python-bindings.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-python-bindings.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### CalculiX adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-calculix-adapter.outputs.shorthash }}\`](https://github.com/precice/calculix-adapter/commit/${{ steps.ref-calculix-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-calculix-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### FEniCS adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-fenics-adapter.outputs.shorthash }}\`](https://github.com/precice/fenics-adapter/commit/${{ steps.ref-fenics-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-fenics-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### OpenFOAM adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-openfoam-adapter.outputs.shorthash }}\`](https://github.com/precice/openfoam-adapter/commit/${{ steps.ref-openfoam-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-openfoam-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### SU2 adapter" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference: [\`${{ steps.ref-su2-adapter.outputs.shorthash }}\`](https://github.com/precice/su2-adapter/commit/${{ steps.ref-su2-adapter.outputs.shorthash }})" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Description:" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "${{ steps.ref-su2-adapter.outputs.description }}" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "\`\`\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "### Tutorials" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Reference (pull request): \`${{ github.event.pull_request.head.sha }}\`" >> $GITHUB_STEP_SUMMARY + printf '%q\n' "Pull request number: [${{ github.event.number }}](https://github.com/precice/tutorials/pull/${{ github.event.number }})" >> $GITHUB_STEP_SUMMARY run-system-tests: name: Trigger system tests