update
Some checks failed
It_School_001/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
Ionel Andrei Cataon
2026-02-05 10:40:53 +02:00
parent 2d3f686918
commit f082bec56b
13 changed files with 228 additions and 5 deletions

25
Jenkins_jobs/jenkinsfile Normal file
View File

@@ -0,0 +1,25 @@
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"
}
}
}
}
}