Skip to content

Instantly share code, notes, and snippets.

@akshaysasidrn
Created August 6, 2017 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akshaysasidrn/be13ee7157df78b15af7caced75e0981 to your computer and use it in GitHub Desktop.
Save akshaysasidrn/be13ee7157df78b15af7caced75e0981 to your computer and use it in GitHub Desktop.
Jenkinsfile example
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment