Skip to content

Commit

Permalink
Update jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanoltraining authored Aug 14, 2019
1 parent 3c261de commit 36efce5
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
node {
pipeline {
agent any
stages
{
stage('Build')
{
echo "Building the Project.........."
steps {
echo "Building the Project.........."
}
}

stage('Test')
{

echo "Testing the Project.........."

steps {
echo "Testing the Project.........."
}
}

stage('Deploy')
{
echo "Deploying the Project.........."
steps {
echo "Deploying the Project.........."
}
}
}

}
}

0 comments on commit 36efce5

Please sign in to comment.