Files
it_school/Jenkins_jobs/jenkinsfile
Ionel Andrei Cataon f082bec56b
Some checks failed
It_School_001/pipeline/head Something is wrong with the build of this commit
update
2026-02-05 10:40:53 +02:00

25 lines
587 B
Plaintext

pipeline {
agent { label 'itschool' }
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"
}
}
}
}
}