|
|
|
@ -83,18 +83,16 @@ jobs:
|
|
|
|
|
working-directory: ${{ env.BUILDDIR }}
|
|
|
|
|
run: make install VERBOSE=1
|
|
|
|
|
- name: "notify: ok"
|
|
|
|
|
uses: rectalogic/notify-irc@v1
|
|
|
|
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
|
|
|
|
uses: ./.github/actions/notify-push
|
|
|
|
|
with:
|
|
|
|
|
server: chat.freenode.net
|
|
|
|
|
nickname: cala-ci
|
|
|
|
|
channel: "#calamares"
|
|
|
|
|
token: ${{ secrets.MATRIX_TOKEN }}
|
|
|
|
|
room: ${{ secrets.MATRIX_ROOM }}
|
|
|
|
|
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.pre_build.outputs.message }}"
|
|
|
|
|
- name: "notify: fail"
|
|
|
|
|
uses: rectalogic/notify-irc@v1
|
|
|
|
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
|
|
|
|
uses: ./.github/actions/notify-push
|
|
|
|
|
with:
|
|
|
|
|
server: chat.freenode.net
|
|
|
|
|
nickname: cala-ci
|
|
|
|
|
channel: "#calamares"
|
|
|
|
|
token: ${{ secrets.MATRIX_TOKEN }}
|
|
|
|
|
room: ${{ secrets.MATRIX_ROOM }}
|
|
|
|
|
message: "FAIL ${{ github.workflow }} in ${{ github.repository }} ${{ steps.pre_build.outputs.message }}"
|
|
|
|
|