Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
| en:modul:m324_aws:topics:04 [2025/10/15 12:55] – dgaravaldi | en:modul:m324_aws:topics:04 [2025/10/22 12:52] (aktuell) – dgaravaldi | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| ===== Introduction to Jenkins pipeline ===== | ===== Introduction to Jenkins pipeline ===== | ||
| - | \\ | + | < |
| \\ | \\ | ||
| ==== Introduction ==== | ==== Introduction ==== | ||
| - | A pipeline is a sequence of automated operations that usually represents a part of the software delivery and quality assurance process. It can be seen as a chain of scripts that provide the following additional benefits: | + | **A pipeline is a sequence of automated operations** that usually represents a part of the software delivery and quality assurance process. It can be seen as a chain of scripts that provide the following additional benefits: |
| * '' | * '' | ||
| * '' | * '' | ||
| Zeile 23: | Zeile 22: | ||
| Stage: A logical separation of steps that groups conceptually distinct sequences of steps – for example, build, test, and deploy, used to visualize the Jenkins pipeline progressInformationTechnically, | Stage: A logical separation of steps that groups conceptually distinct sequences of steps – for example, build, test, and deploy, used to visualize the Jenkins pipeline progressInformationTechnically, | ||
| + | \\ | ||
| === A multi-stage Hello World === | === A multi-stage Hello World === | ||
| As an example, let's extend the Hello World pipeline to contain two stages: | As an example, let's extend the Hello World pipeline to contain two stages: | ||
| Zeile 33: | Zeile 32: | ||
| stage(' | stage(' | ||
| steps { | steps { | ||
| - | echo ' | + | echo ' |
| } | } | ||
| } | } | ||
| stage(' | stage(' | ||
| steps { | steps { | ||
| - | echo ' | + | echo ' |
| - | echo ' | + | echo ' |
| } | } | ||
| } | } | ||
| Zeile 45: | Zeile 44: | ||
| } | } | ||
| - | < | + | </code> |
| The pipeline has no special requirements in terms of environment, | The pipeline has no special requirements in terms of environment, | ||
| Zeile 59: | Zeile 59: | ||
| ---- | ---- | ||
| - | [[https:// | + | [[https:// |