You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/06/15 09:42:36 UTC

[camel] branch camel-3.14.x updated (65fe4dd4a5e -> 3f46c16c197)

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

orpiske pushed a change to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git


    from 65fe4dd4a5e CAMEL-17941 -(Backport) Dropbox: long-lived access tokens are retired, must use refresh token (#7736)
     new c1dc85a74ce INFRA-22694: added support for analyzing the Camel source from Apache CI
     new 3f46c16c197 (chores) ci: force the branch name to avoid overwriting analysis in the main branch

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 | 8 ++++++++
 1 file changed, 8 insertions(+)


[camel] 01/02: INFRA-22694: added support for analyzing the Camel source from Apache CI

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

orpiske pushed a commit to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c1dc85a74cea160beb571c9fa6b50d7a233b6f99
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Thu Jan 6 22:43:06 2022 +0100

    INFRA-22694: added support for analyzing the Camel source from Apache CI
---
 Jenkinsfile | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index f9bf4447c8a..2bb7238d7ee 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -85,6 +85,14 @@ pipeline {
             }
         }
 
+        stage('Code Quality Review') {
+            steps {
+                withCredentials([string(credentialsId: 'apache-camel-core', variable: 'SONAR_TOKEN')]) {
+                        sh "./mvnw $MAVEN_PARAMS -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache -Dsonar.projectKey=apache_camel org.sonarsource.scanner.maven:sonar-maven-plugin:sonar"
+                }
+            }
+        }
+
         stage('Test') {
             steps {
                 sh "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true clean install"


[camel] 02/02: (chores) ci: force the branch name to avoid overwriting analysis in the main branch

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

orpiske pushed a commit to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 3f46c16c1971efe792edcfe66a7b33ca572419fb
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed Jun 15 09:35:05 2022 +0200

    (chores) ci: force the branch name to avoid overwriting analysis in the main branch
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 2bb7238d7ee..c31eb43409c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -88,7 +88,7 @@ pipeline {
         stage('Code Quality Review') {
             steps {
                 withCredentials([string(credentialsId: 'apache-camel-core', variable: 'SONAR_TOKEN')]) {
-                        sh "./mvnw $MAVEN_PARAMS -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache -Dsonar.projectKey=apache_camel org.sonarsource.scanner.maven:sonar-maven-plugin:sonar"
+                    sh "./mvnw $MAVEN_PARAMS -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache -Dsonar.projectKey=apache_camel -Dsonar.branch.name=$BRANCH_NAME org.sonarsource.scanner.maven:sonar-maven-plugin:sonar"
                 }
             }
         }