Last active
October 3, 2019 06:02
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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