Toolbox/Jenkinsfile

24 lines
444 B
Plaintext
Raw Normal View History

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
2023-02-13 17:40:16 +01:00
withGradle {
sh './gradlew build'
}
}
}
stage('Test') {
steps {
echo 'Testing...'
2023-02-13 17:40:16 +01:00
withGradle {
sh './gradlew test'
}
}
}
}
2023-02-13 17:40:16 +01:00
}