mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Move Jenkinsfile from ps-v7 to general branch (#2098)
* Move Jenkinsfile from ps-v7 to general branch * Update Jenkinsfile
This commit is contained in:
parent
7a667131ba
commit
184eb215b6
37
Jenkinsfile
vendored
Normal file
37
Jenkinsfile
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
pipeline {
|
||||
agent any
|
||||
options {
|
||||
disableConcurrentBuilds()
|
||||
}
|
||||
stages {
|
||||
stage('Set JDK 17') {
|
||||
steps {
|
||||
tool name: 'Temurin-17.0.6+10', type: 'jdk'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh './gradlew clean build'
|
||||
}
|
||||
}
|
||||
stage('Archive artifacts') {
|
||||
steps {
|
||||
sh 'rm -rf artifacts'
|
||||
sh 'mkdir artifacts'
|
||||
sh 'cp worldedit-bukkit/build/libs/FastAsyncWorldEdit*.jar artifacts/'
|
||||
sh 'cp worldedit-cli/build/libs/FastAsyncWorldEdit*.jar artifacts/'
|
||||
archiveArtifacts artifacts: 'artifacts/*.jar', followSymlinks: false
|
||||
}
|
||||
}
|
||||
stage('Fingerprint artifacts') {
|
||||
steps {
|
||||
fingerprint 'worldedit-bukkit/build/libs/FastAsyncWorldEdit*.jar'
|
||||
}
|
||||
}
|
||||
stage('Publish JUnit test results') {
|
||||
steps {
|
||||
junit 'worldedit-core/build/test-results/test/*.xml,worldedit-bukkit/build/test-results/test/*.xml'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user