Files
jenkins_projects/Jenkinsfile
2026-02-05 19:51:05 +02:00

17 lines
316 B
Groovy

pipeline {
agent any
stages {
stage('Checkout Complete') {
steps {
echo 'Am descarcat codul cu succes!'
}
}
stage('Verificare Mediu') {
steps {
sh 'whoami'
sh 'ls -la'
}
}
}
}