Skip to content

Commit

Permalink
Adding stages
Browse files Browse the repository at this point in the history
  • Loading branch information
maknop committed Jul 11, 2023
1 parent e667b07 commit f4e4cfd
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,29 @@ pipeline {
options {
timestamps()
}

stages {
stage('no-op') {
stage('Initial Setup') {
steps {
sh "echo 'Hello, World!'"
sh 'printenv'
}
}

stage('Ephemeral Tests') {
steps {
sh "echo 'ephemeral testing stage'"
}
}

stage('Ephemeral Tests') {
steps {
sh "echo 'build stage'"
}
}

stage('Ephemeral Tests') {
steps {
sh "echo 'deploy stage'"
}
}
}
Expand Down

0 comments on commit f4e4cfd

Please sign in to comment.