diff --git a/Jenkinsfile b/Jenkinsfile index 40999ab..a074272 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,6 +2,17 @@ pipeline { agent any stages { + stage('Check python version') { + steps { + sh 'python --version' + } + } + stage('Run ls and pwd') { + steps { + sh 'pwd' + sh 'ls -l' + } + } stage('Build') { steps { echo 'Building'