You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/08 06:24:00 UTC

[camel-spring-boot] branch master updated (de22c9c -> 1d8a133)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


    from de22c9c  CAMEL-15649 : Fixing test case error by NativePRNG SecureRandom not available in Windows (#190)
     new 6282197  Jenkinsfile.sb: Lets clean the workspace as default
     new bdcffea  Jenkinsfile.sb.jdk11: Lets clean the workspace as default
     new 02d905f  Jenkinsfile.sb.jdk11: Added missing param CLEAN
     new 1d8a133  Jenkinsfile.sb.jdk14: Lets clean the workspace as default

The 4 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.sb       | 13 +++++++++++++
 Jenkinsfile.sb.jdk11 | 13 +++++++++++++
 Jenkinsfile.sb.jdk14 | 13 +++++++++++++
 3 files changed, 39 insertions(+)


[camel-spring-boot] 01/04: Jenkinsfile.sb: Lets clean the workspace as default

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 6282197a9586a77f3df659275085b556bf9b1976
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 8 08:18:20 2020 +0200

    Jenkinsfile.sb: Lets clean the workspace as default
---
 Jenkinsfile.sb | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/Jenkinsfile.sb b/Jenkinsfile.sb
index a84af93..13de6cb 100644
--- a/Jenkinsfile.sb
+++ b/Jenkinsfile.sb
@@ -50,8 +50,21 @@ pipeline {
         disableConcurrentBuilds()
     }
 
+    parameters {
+        booleanParam(name: 'CLEAN', defaultValue: true, description: 'Perform the build in clean workspace')
+    }
+
     stages {
 
+        stage('Clean workspace') {
+             when {
+                 expression { params.CLEAN }
+             }
+             steps {
+                 sh 'git clean -fdx'
+           }
+        }
+
         stage('Build') {
             steps {
                 script {


[camel-spring-boot] 04/04: Jenkinsfile.sb.jdk14: Lets clean the workspace as default

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 1d8a13386dc5fc3e5658ad451326ca36b9521e43
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 8 08:22:47 2020 +0200

    Jenkinsfile.sb.jdk14: Lets clean the workspace as default
---
 Jenkinsfile.sb.jdk14 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/Jenkinsfile.sb.jdk14 b/Jenkinsfile.sb.jdk14
index ec82074..c4e7fa1 100644
--- a/Jenkinsfile.sb.jdk14
+++ b/Jenkinsfile.sb.jdk14
@@ -50,8 +50,21 @@ pipeline {
         disableConcurrentBuilds()
     }
 
+    parameters {
+        booleanParam(name: 'CLEAN', defaultValue: true, description: 'Perform the build in clean workspace')
+    }
+
     stages {
 
+        stage('Clean workspace') {
+             when {
+                 expression { params.CLEAN }
+             }
+             steps {
+                 sh 'git clean -fdx'
+           }
+        }
+
         stage('Build') {
             steps {
                 script {


[camel-spring-boot] 02/04: Jenkinsfile.sb.jdk11: Lets clean the workspace as default

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit bdcffea3a9483b6d1dfb75e82b4405372277c227
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 8 08:19:01 2020 +0200

    Jenkinsfile.sb.jdk11: Lets clean the workspace as default
---
 Jenkinsfile.sb.jdk11 | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/Jenkinsfile.sb.jdk11 b/Jenkinsfile.sb.jdk11
index 9104dd6..b94df52 100644
--- a/Jenkinsfile.sb.jdk11
+++ b/Jenkinsfile.sb.jdk11
@@ -52,6 +52,15 @@ pipeline {
 
     stages {
 
+        stage('Clean workspace') {
+             when {
+                 expression { params.CLEAN }
+             }
+             steps {
+                 sh 'git clean -fdx'
+           }
+        }
+
         stage('Build') {
             steps {
                 script {


[camel-spring-boot] 03/04: Jenkinsfile.sb.jdk11: Added missing param CLEAN

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 02d905fd69e1a8434c5056d01cdefde4332839c2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 8 08:22:08 2020 +0200

    Jenkinsfile.sb.jdk11: Added missing param CLEAN
---
 Jenkinsfile.sb.jdk11 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Jenkinsfile.sb.jdk11 b/Jenkinsfile.sb.jdk11
index b94df52..16d4a7b 100644
--- a/Jenkinsfile.sb.jdk11
+++ b/Jenkinsfile.sb.jdk11
@@ -50,6 +50,10 @@ pipeline {
         disableConcurrentBuilds()
     }
 
+    parameters {
+        booleanParam(name: 'CLEAN', defaultValue: true, description: 'Perform the build in clean workspace')
+    }
+
     stages {
 
         stage('Clean workspace') {