You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2022/01/13 21:43:57 UTC

[camel-website] branch pr/notify-zulip created (now ea445b9)

This is an automated email from the ASF dual-hosted git repository.

zregvart pushed a change to branch pr/notify-zulip
in repository https://gitbox.apache.org/repos/asf/camel-website.git.


      at ea445b9  tmp: fail fast (will be removed)

This branch includes the following new commits:

     new 2c53eed  chore: failed build notification on Zulip
     new ea445b9  tmp: fail fast (will be removed)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[camel-website] 02/02: tmp: fail fast (will be removed)

Posted by zr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zregvart pushed a commit to branch pr/notify-zulip
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit ea445b9409bdc5f7084b957a7f3cf5825195b4f8
Author: Zoran Regvart <zo...@regvart.com>
AuthorDate: Thu Jan 13 22:43:41 2022 +0100

    tmp: fail fast (will be removed)
---
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 253fcec..87fadb7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -57,6 +57,7 @@ pipeline {
             }
 
             steps {
+                sh "exit 1"
                 sh "cd $WORKSPACE/camel-website && yarn clean; HUGO_PARAMS_GitHubUsername=$GITHUB_USR HUGO_PARAMS_GitHubToken=$GITHUB_PSW yarn build-all"
             }
         }

[camel-website] 01/02: chore: failed build notification on Zulip

Posted by zr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zregvart pushed a commit to branch pr/notify-zulip
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 2c53eed41e70f24104b9144f1daca69ad0eac1c8
Author: Zoran Regvart <zo...@regvart.com>
AuthorDate: Thu Jan 13 22:43:12 2022 +0100

    chore: failed build notification on Zulip
    
    This uses the Zulip mail-in functionality to send messages for failed
    builds.
---
 Jenkinsfile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 346c897..253fcec 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -110,5 +110,8 @@ pipeline {
         always {
             sh "$WORKSPACE/docker-pipe/teardown.sh"
         }
+        unsuccessful {
+            mail subject: 'Website build failed', body: "Please have a look at the build output at: ${env.BUILD_URL}", to: 'camel-website.874fb06555c2b4407efde9f9a3b13c13.show-sender@streams.zulipchat.com'
+        }
     }
 }