mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-01-01 14:29:58 +01:00
Build core first
This commit is contained in:
parent
bd61698f16
commit
5b799195e3
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
|
|
@ -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') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue