Stage View

This commit is contained in:
2026-02-05 19:51:05 +02:00
parent d50c62b3bf
commit f54c004f24

16
Jenkinsfile vendored Normal file
View File

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