23 lines
405 B
Plaintext
23 lines
405 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
echo 'Building..'
|
||
|
sh './gradlew check --no-daemon'
|
||
|
}
|
||
|
}
|
||
|
stage('Test') {
|
||
|
steps {
|
||
|
echo 'Testing..'
|
||
|
}
|
||
|
}
|
||
|
stage('Deploy') {
|
||
|
steps {
|
||
|
echo 'Deploying..'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|