diff --git a/.gitignore b/.gitignore index d3b1c34c78..5b4cfe371e 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ buildNumber.properties # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) !/.mvn/wrapper/maven-wrapper.jar +#eof diff --git a/README.md b/README.md index 40efacc879..92a3221bd2 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,4 @@ The `jenkins` directory contains an example of the `Jenkinsfile` (i.e. Pipeline) you'll be creating yourself during the tutorial and the `scripts` subdirectory contains a shell script with commands that are executed when Jenkins processes the "Deliver" stage of your Pipeline. +Testline diff --git a/jenkins/Jenkinsfile b/jenkins/Jenkinsfile index 52eed25843..76dc6a188b 100644 --- a/jenkins/Jenkinsfile +++ b/jenkins/Jenkinsfile @@ -21,7 +21,12 @@ pipeline { sh './jenkins/scripts/deliver.sh' } } - stage('Complete') { + stage('Completed') { + steps { + echo 'Job Complete!' + } + } + stage('CompleteTest') { steps { echo 'Job Complete!' }