You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2020/09/01 12:14:12 UTC

[sling-tooling-jenkins] branch master updated (fc0216b -> 2e0299f)

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

bdelacretaz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git.


    from fc0216b  Adding sonarqube badges as per SLING-9682
     new 655d44e  Mention that no deployment is needed
     new 2e0299f  Increase timeout to 30 minutes, 'activity' option doesn't seem to work

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:
 README.md                                              | 3 +++
 src/org/apache/sling/jenkins/SlingJenkinsHelper.groovy | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)


[sling-tooling-jenkins] 02/02: Increase timeout to 30 minutes, 'activity' option doesn't seem to work

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

bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git

commit 2e0299faace804d767f25edd8ab69d1ea7a1acfe
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Tue Sep 1 14:13:50 2020 +0200

    Increase timeout to 30 minutes, 'activity' option doesn't seem to work
---
 src/org/apache/sling/jenkins/SlingJenkinsHelper.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/org/apache/sling/jenkins/SlingJenkinsHelper.groovy b/src/org/apache/sling/jenkins/SlingJenkinsHelper.groovy
index 2f06a76..da46c65 100644
--- a/src/org/apache/sling/jenkins/SlingJenkinsHelper.groovy
+++ b/src/org/apache/sling/jenkins/SlingJenkinsHelper.groovy
@@ -60,7 +60,7 @@ def runWithErrorHandling(Closure build) {
     ]
 
     try {
-        timeout(time:15, unit: 'MINUTES', activity: true) {
+        timeout(time:30, unit: 'MINUTES', activity: true) {
 
             stage('Init') {
                 checkout scm


[sling-tooling-jenkins] 01/02: Mention that no deployment is needed

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

bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git

commit 655d44e730dbf6e9b050e87fc21aa5956436966b
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Tue Sep 1 14:13:27 2020 +0200

    Mention that no deployment is needed
---
 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
index 153b21e..b68b4a0 100644
--- a/README.md
+++ b/README.md
@@ -8,5 +8,8 @@ Sling Jenkins jobs creation
 The scripts found in this folder are used to create the Jenkins jobs
 listed at https://builds.apache.org/view/S-Z/view/Sling/
 
+The master branch of this module is pulled directly from the Jenkins
+builds, no deployment step is required to activate changes.
+
 See https://cwiki.apache.org/confluence/display/SLING/Sling+Jenkins+Setup
 for more info.