diff --git a/test/e2e/ci/Jenkinsfile b/test/e2e/ci/Jenkinsfile index 4bbab60c17..af5afb46c3 100644 --- a/test/e2e/ci/Jenkinsfile +++ b/test/e2e/ci/Jenkinsfile @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.1' +library 'status-jenkins-lib@v1.8.6' pipeline { @@ -181,6 +181,12 @@ pipeline { ]) updateGitHubStatus() } } + failure { script { + discord.send( + header: '**Desktop E2E test failure!**', + cred: 'discord-status-desktop-e2e-webhook', + ) + } } cleanup { cleanWs() } } }