Toolbox/Jenkinsfile

18 lines
318 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
sh 'gradle build'
}
}
stage('Test') {
steps {
echo 'Testing...'
sh 'gradle test'
}
}
}
}