Toolbox/Jenkinsfile

18 lines
308 B
Plaintext
Raw Normal View History

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