Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
en:modul:m324_aws:topics:04 [2025/10/21 12:23] dgaravaldien:modul:m324_aws:topics:04 [2025/10/22 12:52] (aktuell) dgaravaldi
Zeile 3: Zeile 3:
 \\ \\
 ==== 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:
   * ''Operation grouping'': Operations are grouped together into stages (also known as gates or quality gates) that introduce a structure into a process and clearly define a rule – if one stage fails, no further stages are executed.   * ''Operation grouping'': Operations are grouped together into stages (also known as gates or quality gates) that introduce a structure into a process and clearly define a rule – if one stage fails, no further stages are executed.
   * ''Visibility'': All aspects of a process are visualized, which helps in quick failure analysis and promotes team collaboration.   * ''Visibility'': All aspects of a process are visualized, which helps in quick failure analysis and promotes team collaboration.
Zeile 32: Zeile 32:
           stage('First Stage') {           stage('First Stage') {
                steps {                steps {
-                    echo 'Step   -Hello World'+                    echo 'Step 1. Hello World'
                }                }
           }           }
           stage('Second Stage') {           stage('Second Stage') {
                steps {                steps {
-                    echo 'Step   -Second time Hello' +                    echo 'Step 2. Second time Hello' 
-                    echo 'Step   -Third time Hello'+                    echo 'Step 3. Third time Hello'
                }                }
           }           }
  • en/modul/m324_aws/topics/04.1761042214.txt.gz
  • Zuletzt geändert: 2025/10/21 12:23
  • von dgaravaldi