You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2018/10/22 21:18:24 UTC

[incubator-plc4x] branch master updated: - Moved the sonar step to a ubuntu node as access to the apache sonar server has recently been restricted.

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

cdutz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git


The following commit(s) were added to refs/heads/master by this push:
     new fb51508  - Moved the sonar step to a ubuntu node as access to the apache sonar server has recently been restricted.
fb51508 is described below

commit fb515089b56b7c8f6a82832770a1d9f6f2d635da
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Mon Oct 22 22:18:20 2018 +0100

    - Moved the sonar step to a ubuntu node as access to the apache sonar server has recently been restricted.
---
 Jenkinsfile | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 747f8c3..06540c8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -121,6 +121,12 @@ pipeline {
             when {
                 branch 'master'
             }
+            // Only the official build nodes have the credentials to deploy setup.
+            agent {
+                node {
+                    label 'ubuntu && !H32'
+                }
+            }
             steps {
                 echo 'Building'
                 sh 'mvn -P${JENKINS_PROFILE} sonar:sonar'
@@ -134,7 +140,7 @@ pipeline {
             // Only the official build nodes have the credentials to deploy setup.
             agent {
                 node {
-                    label 'ubuntu && !H32'
+                    label 'ubuntu'
                 }
             }
             steps {