Skip to content

Instantly share code, notes, and snippets.

@PrashantBhatasana
Last active October 3, 2019 06:02
Show Gist options
  • Save PrashantBhatasana/45d30c6fe11e8cb6cae0806e60bd0048 to your computer and use it in GitHub Desktop.
Save PrashantBhatasana/45d30c6fe11e8cb6cae0806e60bd0048 to your computer and use it in GitHub Desktop.
This is the Demo jenkinsfile script for my medium blog. https://medium.com/appgambit/build-pipeline-with-jenkins-c13bf788a3f0
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