Files
it_school/Jenkins_jobs/jenkinsfile
Ionel Andrei Cataon 611c31c0a1
All checks were successful
It_School_001/pipeline/head This commit looks good
update
2026-02-05 11:26:27 +02:00

25 lines
570 B
Plaintext

pipeline {
agent any
stages {
stage ('scm checkout') {
steps {
checkout scm
}
}
stage ('primul job') {
steps {
sh 'pwd'
sh 'echo "Hello! Bine ai venit la It_School Jenkins startup!" > jenkins.txt'
sh 'ls -alh'
}
}
stage ('job doi') {
steps {
script {
def Age=21
echo "I have ${Age} years old"
}
}
}
}
}