Skip to content
Closed
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
12 changes: 12 additions & 0 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ on:
description: 'TRUE or FALSE (FALSE -> Upload only when the workflow fails)'
default: 'TRUE'
type: string
secrets:
MATRIX_BOT_PASSWORD:
required: true

jobs:
run_system_tests:
runs-on: [self-hosted, linux, x64, precice-tests-vm]
Expand Down Expand Up @@ -98,3 +102,11 @@ jobs:
name: system_tests_run_${{ github.run_id }}_${{ github.run_attempt }}_full
path: |
runs/*
- name: Notify maintainers
if: ${{ failure() }}
uses: precice/notify-action@v1
with:
homeserver: ${{ vars.MATRIX_BOT_HOMESERVER }}
login: ${{ vars.MATRIX_BOT_LOGIN }}
password: ${{ secrets.MATRIX_BOT_PASSWORD }}
room_id: ${{ vars.MATRIX_BOT_ROOMID }}
Comment on lines +107 to +112

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This actually means that we would need to share the secrets also with every repository that calls the system tests.

Loading