From d1b9cfdf430b55901764d2c87b78c07143ce69ad Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Wed, 13 Dec 2023 13:59:47 +0100 Subject: [PATCH] Check if python is installed --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) 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'