You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by rl...@apache.org on 2023/05/25 20:02:47 UTC

[comdev-events-site] branch main updated (3c24f45 -> 5e4f8cc)

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

rlenferink pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/comdev-events-site.git


    from 3c24f45  Community over Code is also an official event
     new b2e068e  Use explicit cacheDir for Hugo build
     new 5e4f8cc  Update website tag to clarify that the notice is about events.a.o

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.


Summary of changes:
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[comdev-events-site] 02/02: Update website tag to clarify that the notice is about events.a.o

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

rlenferink pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/comdev-events-site.git

commit 5e4f8cc2255b89465a8638a25946d2b9bfbbe434
Author: Roy Lenferink <le...@gmail.com>
AuthorDate: Thu May 25 22:02:35 2023 +0200

    Update website tag to clarify that the notice is about events.a.o
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 138aaf2..e5228ec 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -200,7 +200,7 @@ Build: ${env.BUILD_URL}
                         to: "dev@community.apache.org",
                         recipientProviders: [[$class: 'DevelopersRecipientProvider']],
                         from: 'Jenkins <je...@ci-builds.apache.org>',
-                        subject: "[website] Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",
+                        subject: "[events-website] Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",
                         body: """
 The build for ${env.JOB_NAME} completed successfully and is back to normal.
 


[comdev-events-site] 01/02: Use explicit cacheDir for Hugo build

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

rlenferink pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/comdev-events-site.git

commit b2e068e54b7e5bab3a159f1cfd39d65469bb834a
Author: Roy Lenferink <le...@gmail.com>
AuthorDate: Thu May 25 22:01:54 2023 +0200

    Use explicit cacheDir for Hugo build
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 9140a90..138aaf2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -96,7 +96,7 @@ pipeline {
         stage('Build') {
             steps {
                 script {
-                    sh "${HUGO_PATH} --destination ${env.OUT_DIR}"
+                    sh "${HUGO_PATH} --destination ${env.OUT_DIR} --cacheDir ${env.HUGO_DIR}"
                     sh "${PAGEFIND_DIR}/bin/pagefind --source ${env.OUT_DIR}"
                     sh "rm -f .hugo_build.lock"
                 }