Skip to content

Commit

Permalink
build(release): adding starter jenkinsfile (#1150)
Browse files Browse the repository at this point in the history
  • Loading branch information
maknop authored Jul 11, 2023
1 parent 9de8dcb commit 2c3da3d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
pipeline {
agent { label 'insights' }
options {
timestamps()
}

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

stage('Build stage') {
steps {
sh "echo 'build stage'"
}
}

stage('Deploy stage') {
steps {
sh "echo 'deploy stage'"
}
}
}
}

0 comments on commit 2c3da3d

Please sign in to comment.