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 and cdcabrera committed Aug 8, 2023
1 parent 29bb863 commit fad2b25
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
pipeline {
agent { label 'insights' }
options {
timestamps()
}

stages {
stage('Initial Setup') {
steps {
sh 'printenv'
}
}

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 fad2b25

Please sign in to comment.