Commit 53027fb2 authored by Balazs Grill's avatar Balazs Grill
Browse files

Updated jenkinsfile

Change-Id: I4e917f13c1ca1428b4762f404d82d99652527875
parent 602b80db
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
pipeline {
	agent {
        kubernetes {
            label 'centos-7'
            label 'centos-latest'
        }
    }
    
@@ -24,14 +24,14 @@ pipeline {
	
	tools {
        maven 'apache-maven-latest'
        jdk 'oracle-jdk8-latest' //AdoptOpenJDK does not work because of JavaFX dependencies
        jdk 'temurin-jdk11-latest'
    }

	stages {
		stage('Full build') { 
			steps {
                xvnc {
                    sh "mvn -B -f releng/org.eclipse.sphinx.releng.builds/pom.xml ${SIGN_BUILD_PARAMETER} ${VERSION_MAVEN_PARAMETER} -P platform-oxygen -Dmaven.repo.local=$WORKSPACE/.repository -Dmaven.test.failure.ignore=true clean install"
                    sh "mvn -B -f releng/org.eclipse.sphinx.releng.builds/pom.xml ${SIGN_BUILD_PARAMETER} ${VERSION_MAVEN_PARAMETER} -P platform-2020-09 -Dmaven.repo.local=$WORKSPACE/.repository -Dmaven.test.failure.ignore=true clean install"
                }
			}
		}