mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-10-31 22:50:50 +01:00
35 lines
No EOL
522 B
Groovy
35 lines
No EOL
522 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Clean') {
|
|
steps {
|
|
sh './gradlew clean --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
steps {
|
|
sh './gradlew build --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Upload Artifacts') {
|
|
steps {
|
|
archiveArtifacts 'build/libs/**.jar'
|
|
}
|
|
}
|
|
|
|
stage('Publish') {
|
|
when {
|
|
branch '1.12.2'
|
|
}
|
|
steps {
|
|
sh './gradlew publish --no-daemon'
|
|
}
|
|
}
|
|
|
|
}
|
|
environment {
|
|
local_maven = '/var/www/maven'
|
|
}
|
|
} |