booking/Jenkinsfile
2025-10-01 16:47:23 +03:00

10 lines
235 B
Groovy

pipeline {
agent any
options { timestamps(); ansiColor('xterm') }
stages {
stage('Build') { steps { sh 'echo "Build..."' } }
stage('Test') { steps { sh 'echo "Test..."' } }
}
post { always { cleanWs() } }
}