mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-06 08:01:59 +01:00
48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
|
|
pipeline {
|
||
|
|
agent none
|
||
|
|
stages {
|
||
|
|
stage('Build') {
|
||
|
|
parallel {
|
||
|
|
stage('Build on Windows') {
|
||
|
|
agent {
|
||
|
|
label "windows"
|
||
|
|
}
|
||
|
|
steps {
|
||
|
|
bat 'mvn -B -DskipTests clean package'
|
||
|
|
}
|
||
|
|
post {
|
||
|
|
always {
|
||
|
|
archiveArtifacts artifacts: '**/target/*.jar*', fingerprint: true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
stage('Build on Windows') {
|
||
|
|
agent {
|
||
|
|
label "linux"
|
||
|
|
}
|
||
|
|
steps {
|
||
|
|
sh 'mvn -B -DskipTests clean package'
|
||
|
|
}
|
||
|
|
post {
|
||
|
|
always {
|
||
|
|
archiveArtifacts artifacts: '**/target/*.jar*', fingerprint: true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
stage('Build on OSX') {
|
||
|
|
agent {
|
||
|
|
label "osx"
|
||
|
|
}
|
||
|
|
steps {
|
||
|
|
sh 'mvn -B -DskipTests clean package'
|
||
|
|
}
|
||
|
|
post {
|
||
|
|
always {
|
||
|
|
archiveArtifacts artifacts: '**/target/*.jar*', fingerprint: true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|