Check if python is installed
Some checks failed
Amarillo/amarillo-gitea/amarillo-core/pipeline/head There was a failure building this commit

This commit is contained in:
Csaba 2023-12-13 13:59:47 +01:00
parent aaaae1a793
commit d1b9cfdf43

11
Jenkinsfile vendored
View file

@ -2,6 +2,17 @@ pipeline {
agent any agent any
stages { stages {
stage('Check python version') {
steps {
sh 'python --version'
}
}
stage('Run ls and pwd') {
steps {
sh 'pwd'
sh 'ls -l'
}
}
stage('Build') { stage('Build') {
steps { steps {
echo 'Building' echo 'Building'