You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2020/01/25 19:15:00 UTC

[archiva-redback-core] branch redback-2.6.x updated: Updating jenkins build file

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

martin_s pushed a commit to branch redback-2.6.x
in repository https://gitbox.apache.org/repos/asf/archiva-redback-core.git


The following commit(s) were added to refs/heads/redback-2.6.x by this push:
     new 3c212ed  Updating jenkins build file
3c212ed is described below

commit 3c212ed127b42bec19a294131aa8919fd7077e6e
Author: Martin Stockhammer <ma...@apache.org>
AuthorDate: Sat Jan 25 20:14:55 2020 +0100

    Updating jenkins build file
---
 Jenkinsfile | 150 +++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 87 insertions(+), 63 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 167488c..a55de41 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,71 +1,95 @@
-node {
-  // System Dependent Locations
-  def mvntool = tool name: 'maven3', type: 'hudson.tasks.Maven$MavenInstallation'
-  def jdktool = tool name: 'jdk8', type: 'hudson.model.JDK'
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
 
-  // Environment
-  List mvnEnv = ["PATH+MVN=${mvntool}/bin", "PATH+JDK=${jdktool}/bin", "JAVA_HOME=${jdktool}/", "MAVEN_HOME=${mvntool}"]
-  mvnEnv.add("MAVEN_OPTS=-Xms256m -Xmx1024m -Djava.awt.headless=true")
+/**
+ * Main build file for Jenkins Multibranch pipeline.
+ *
+ * The pipeline builds, runs the test and deploys to the archiva snapshot repository.
+ *
+ * Uses one stage for build and deploy to avoid running it multiple times.
+ * The settings for deployment with the credentials must be provided by a MavenSettingsProvider.
+ *
+ * Only the war and zip artifacts are archived in the jenkins build archive.
+ */
+LABEL = 'ubuntu'
+buildJdk = 'JDK 1.8 (latest)'
+buildJdk11 = 'JDK 11 (latest)'
+mavenVersion = 'Maven 3.5.4'
 
-  try
-  {
-    stage 'Checkout'
-    checkout scm
-  } catch (Exception e) {
-    //notifyBuild("Checkout Failure")
-    throw e
-  }
+def defaultPublishers = [artifactsPublisher(disabled: false), junitPublisher(ignoreAttachments: false, disabled: false),
+                         findbugsPublisher(disabled: true), openTasksPublisher(disabled: true),
+                         dependenciesFingerprintPublisher(disabled: false), invokerPublisher(disabled: true),
+                         pipelineGraphPublisher(disabled: false),mavenLinkerPublisher(disabled: false)]
 
-  try
-  {
-    stage 'Build'
-    withEnv(mvnEnv) {
-      timeout(60) {
-        // Run test phase / ignore test failures
-        sh "mvn -B clean install -Dmaven.test.failure.ignore=true -e"
-        // Report failures in the jenkins UI
-        step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
-      }
-      if(isUnstable())
-      {
-        //notifyBuild("Unstable / Test Errors")
-      }
+pipeline {
+    agent { label "${LABEL}" }
+    // Build should also start, if parent has been built successfully
+    triggers { 
+        upstream(upstreamProjects: 'Archiva-TLP-Gitbox/archiva-parent/archiva-2.x', threshold: hudson.model.Result.SUCCESS) 
     }
-  } catch(Exception e) {
-    notifyBuild("Test Failure")
-    throw e
-  }
-}
-
-// Test if the Jenkins Pipeline or Step has marked the
-// current build as unstable
-def isUnstable()
-{
-  return currentBuild.result == "UNSTABLE"
-}
 
-// Send a notification about the build status
-def notifyBuild(String buildStatus)
-{
-  // default the value
-  buildStatus = buildStatus ?: "UNKNOWN"
+    options {
+        disableConcurrentBuilds()
+        durabilityHint('PERFORMANCE_OPTIMIZED')
+        buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '5'))
+        timeout(time: 120, unit: 'MINUTES')
+    }
 
-  def email = "${env.EMAILADDRESS}"
-  def summary = "${env.JOB_NAME}#${env.BUILD_NUMBER} - ${buildStatus}"
-  def detail = """<h4>Job: <a href='${env.JOB_URL}'>${env.JOB_NAME}</a> [#${env.BUILD_NUMBER}]</h4>
-  <p><b>${buildStatus}</b></p>
-  <table>
-    <tr><td>Build</td><td><a href='${env.BUILD_URL}'>${env.BUILD_URL}</a></td><tr>
-    <tr><td>Console</td><td><a href='${env.BUILD_URL}console'>${env.BUILD_URL}console</a></td><tr>
-    <tr><td>Test Report</td><td><a href='${env.BUILD_URL}testReport/'>${env.BUILD_URL}testReport/</a></td><tr>
-  </table>
-  """
+    stages {
+        stage( 'JDK8' ) {
+            steps {
+                script{
+                    if (env.NONAPACHEORG_RUN != 'y' && env.BRANCH_NAME == 'master')
+                    {
+                        asfStandardBuild.mavenBuild( buildJdk, "clean deploy -U -fae -T3", mavenVersion,
+                                                     defaultPublishers )
+                    } else {
+                        asfStandardBuild.mavenBuild( buildJdk, "clean install -U -fae -T3", mavenVersion,
+                                                     defaultPublishers )
+                    }
+                }
+            }
+        }
+    }
 
-  emailext (
-    to: email,
-    subject: summary,
-    body: detail
-  )
+    post {
+        always {
+            cleanWs deleteDirs: true, notFailBuild: true, patterns: [[pattern: '.repository', type: 'EXCLUDE']]
+        }    
+        unstable {
+            script{
+                asfStandardBuild.notifyBuild( "Unstable Build ")
+            }
+        }
+        failure {
+            script{
+                asfStandardBuild.notifyBuild( "Error in redback core build ")
+            }
+        }
+        success {
+            script {
+                def previousResult = currentBuild.previousBuild?.result
+                if (previousResult && !currentBuild.resultIsWorseOrEqualTo( previousResult ) ) {
+                    asfStandardBuild.notifyBuild( "Fixed" )
+                }
+            }
+        }
+    }
 }
-
-// vim: et:ts=2:sw=2:ft=groovy
+// vim: et:ts=4:sw=4:ft=groovy