summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index b982250..a7aabdb 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -2,17 +2,17 @@ pipeline {
agent any
stages {
- stage('Build') {
+ stage('BuildIt') {
steps {
echo 'Building..'
}
}
- stage('Test') {
+ stage('TestIt') {
steps {
echo 'Testing..'
}
}
- stage('Deploy') {
+ stage('DeployIt') {
steps {
echo 'Deploying....'
}