October 2017
Intermediate to advanced
458 pages
11h 13m
English
At this point, you may be wondering what this stage block is about anyway. Put either the declarative or the scripted pipeline example in the Script field of your pipeline project, save it, and run it. On your project page, you should now see your first build and your first stage:

You can add another stage and Jenkins will visualize that one too:
def greetings = 'Hello' stage('Greet') { echo greetings}stage('Say goodbye') { echo 'Goodbye'}
The output of the script looks as follows:

As you can see, in the second picture, build ...
Read now
Unlock full access