Build core first

This commit is contained in:
Endolf 2018-05-24 21:54:32 +01:00
parent bd61698f16
commit 5b799195e3

13
Jenkinsfile vendored
View file

@ -7,6 +7,19 @@ pipeline {
}
options { buildDiscarder(logRotator(numToKeepStr: '5')) }
stages {
stage('Build core') {
agent {
label "osx"
}
steps {
sh 'mvn -B -Dmaven.antrun.skip -Dmaven.source.skip -Dmaven.test.skip -DskipTests -DskipITs -pl coreAPI/ package'
}
post {
success {
archiveArtifacts artifacts: 'coreAPI/target/apidocs', fingerprint: true
}
}
}
stage('Build natives') {
parallel {
stage('Build Windows natives') {