You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/09/24 19:25:45 UTC

[maven] branch reproducible updated: removed initial build: parallel is sufficient

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

hboutemy pushed a commit to branch reproducible
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/reproducible by this push:
     new 706a3dd  removed initial build: parallel is sufficient
706a3dd is described below

commit 706a3dd665bb5530a282f3afb191d7299b17955c
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Tue Sep 24 21:25:15 2019 +0200

    removed initial build: parallel is sufficient
---
 Jenkinsfile | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0e5e1c6..dbb8e0b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -46,26 +46,6 @@ node(jenkinsEnv.nodeSelection(osNode)) {
            }
         }
 
-        stage('Build / Unit Test') {
-            String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk)
-            String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
-            withMaven(jdk: jdkName, maven: mvnName, mavenLocalRepo:"${WORK_DIR}/.repository", options:[
-                artifactsPublisher(disabled: false),
-                junitPublisher(ignoreAttachments: false),
-                findbugsPublisher(disabled: false),
-                openTasksPublisher(disabled: false),
-                dependenciesFingerprintPublisher(),
-                invokerPublisher(),
-                pipelineGraphPublisher()
-            ]) {
-                sh "mvn clean ${MAVEN_GOAL} -B -U -e -fae -V -Dmaven.test.failure.ignore=true"
-            }
-            dir ('apache-maven/target') {
-                sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-                stash includes: 'apache-maven-dist.zip', name: 'dist'
-            }
-        }
-
         tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', id: '_', remote: 'https://gitbox.apache.org/repos/asf/maven.git', traits: [[$class: 'jenkins.plugins.git.traits.BranchDiscoveryTrait'], [$class: 'GitToolSCMSourceTrait', gitTool: 'Default']]], targets: [BRANCH_NAME, 'master']
     }
 }