mirror of
https://github.com/zontreck/AutoMoneyPlugin
synced 2025-06-19 02:13:55 +00:00
30 lines
No EOL
644 B
Groovy
30 lines
No EOL
644 B
Groovy
pipeline {
|
|
agent any
|
|
options {
|
|
buildDiscarder(logRotator(numToKeepStr: '5'))
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
agent {
|
|
label 'linux'
|
|
}
|
|
steps {
|
|
echo 'Building..'
|
|
script {
|
|
sh '''
|
|
#!/bin/bash
|
|
|
|
chmod +x gradlew
|
|
./gradlew clean build release
|
|
'''
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
archiveArtifacts artifacts: 'build/libs/*.jar'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |