diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 0000000..281d4ad --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,20 @@ +#!/bin/bash + +node { + stage ('Build') + { + echo "Building the project......" + } + satge ('test') + { + echo "Testing the Project....." + } + stage ('Depoly') + { + echo "Depolying the project....." + } + stage ('Release') + { + echo "Releasing the project......" + } +}