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