diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..64c624e99 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,27 @@ +pipeline { + + agent any + + stages { + stage("build"){ + steps{ + echo 'building application' + } + } + stage("test"){ + steps{ + echo 'testing application' + script { + def test = 2+2>3 ?'cool':'not cool' + echo test + } + } + } + stage("deploy"){ + steps{ + echo 'deploying application' + } + } + } + +}