forked from pavanoltraining/jenkinspipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c261de
commit 36efce5
Showing
1 changed file
with
16 additions
and
7 deletions.
There are no files selected for viewing
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
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.........." | ||
} | ||
} | ||
} | ||
|
||
} | ||
} |