Added zero

This commit is contained in:
Guillem Hernandez Sola
2018-07-19 22:37:58 +02:00
parent 326a5f51e1
commit 8d3b814b4a
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
pipeline {
agent any
environment {
FOO = "BAZ"
}
stages {
stage("baz") {
steps {
sh 'echo "FOO is $FOO"'
}
}
stage("bar") {
environment {
FOO = "BAR"
}
steps {
sh 'echo "FOO is $FOO"'
}
}
}
}