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

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new 034e173  fix paths
034e173 is described below

commit 034e173233482bd22983fe25172fabae9fc440e4
Author: Eric Barboni <[email protected]>
AuthorDate: Mon Oct 11 13:26:25 2021 +0200

    fix paths
---
 jobs/Jenkinsmatrixfile.groovy | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/jobs/Jenkinsmatrixfile.groovy b/jobs/Jenkinsmatrixfile.groovy
index 9e1154b..794834e 100644
--- a/jobs/Jenkinsmatrixfile.groovy
+++ b/jobs/Jenkinsmatrixfile.groovy
@@ -53,16 +53,16 @@ pipeline {
                                 unstash 'idebuildzip'
                                 unzip  zipFile: 'nbbuild/build/testdist.zip', 
dir:'testdir'
                                 unzip  zipFile: 'zip/NetBeansIDE.zip', 
dir:'netbeans'
-                                mkdir "-p 
${WORKSPACE}/result/unit/${JDK}/${MODULE} "
+                                sh "mkdir -p 
${WORKSPACE}/result/unit/${env.JDK}/${env.MODULE} "
                                 sh 'java -version'
                                 sh 'ant -version'
                                 // this is not finished
                                 wrap([$class: 'Xvfb', additionalOptions: '', 
assignedLabels: '', displayNameOffset: 0, autoDisplayName:true, 
installationName: 'Xvfb', parallelBuild: true, screen: '']) {
-                                    sh "ant -f ${WORKSPACE}/testdir/build.xml 
-Dtest-sys-prop.ignore.random.failures=true 
-Dtest.result.dir=${WORKSPACE}/result/unit/${JDK}/${MODULE} 
-Dtest.clusters=${env.MODULE} -Dtest.types=unit 
-Dnetbeans.dest.dir=${WORKSPACE}/netbeans/netbeans "
+                                    sh "ant -f ${WORKSPACE}/testdir/build.xml 
-Dtest-sys-prop.ignore.random.failures=true 
-Dtest.result.dir=${WORKSPACE}/result/unit/${env.JDK}/${env.MODULE} 
-Dtest.clusters=${env.MODULE} -Dtest.types=unit 
-Dnetbeans.dest.dir=${WORKSPACE}/netbeans/netbeans "
                                 }
-                                junit 
"${WORKSPACE}/result/unit/${JDK}/${MODULE}/**/*.xml"
+                                junit 
"${WORKSPACE}/result/unit/${env.JDK}/${env.MODULE}/**/*.xml"
                                 //sh "ant -f ${WORKSPACE}/testdir/build.xml 
-Dtest.clusters=${env.MODULE} -Dtest.types=qa-functional 
-Dnetbeans.dest.dir=${WORKSPACE}/netbeans/netbeans"
-                                archiveArtifacts artifacts: 
"${WORKSPACE}/result/unit/${JDK}/${MODULE}/**"
+                                archiveArtifacts artifacts: 
"${WORKSPACE}/result/unit/${env.JDK}/${env.MODULE}/**"
                             }
                         }
 

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to