You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by po...@apache.org on 2020/07/27 10:44:07 UTC

[creadur-rat] branch master updated: RAT-271: Fix compilation error

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

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git


The following commit(s) were added to refs/heads/master by this push:
     new 9c06fc3  RAT-271: Fix compilation error
9c06fc3 is described below

commit 9c06fc31e2a9d3aa25fcc975c327e159052cf8e1
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Mon Jul 27 12:43:51 2020 +0200

    RAT-271: Fix compilation error
---
 Jenkinsfile | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 64f051f..cf8317a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,7 +19,7 @@
  */
 pipeline {
 
-    /** Hopefully we won't need this on the newer infra ...
+    /* Hopefully we won't need this on the newer infra ...
     agent {
         node {
             label 'ubuntu'
@@ -95,20 +95,7 @@ pipeline {
             }
         }
 
-/*
-        stage('Code Quality') {
-            when {
-                branch 'master'
-            }
-            steps {
-                echo 'Checking Code Quality on SonarCloud'
-                withCredentials([string(credentialsId: 'chris-sonarcloud-token', variable: 'SONAR_TOKEN')]) {
-                    sh 'mvn sonar:sonar ${SONARCLOUD_PARAMS} -Dsonar.login=${SONAR_TOKEN}'
-                }
-            }
-        }
-*/
-        stage('Stage site') {
+        stage('Ensure site build works') {
             when {
                 branch 'master'
             }
@@ -117,6 +104,7 @@ pipeline {
                 sh 'mvn site:site'
             }
         }
+    }
 
     // Send out notifications on unsuccessful builds.
     post {