Jenkinsfile 181 B

12345678910
  1. /* Requires the Docker Pipeline plugin */
  2. pipeline {
  3. stages {
  4. stage('build') {
  5. steps {
  6. sh 'python --version'
  7. }
  8. }
  9. }
  10. }