Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
pipeline {
agent any

stages {
stage('one') {
steps {
echo 'Step 01'
sleep 3
}
}
stage('two') {
steps {
echo 'Step 02'
sleep 9
}
}
stage('three') {
steps {
echo 'Step 03'
sleep 5
}
}
}
post{
always {
echo "This pipeline is completed"
}
}
}

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,5 @@ Note
----

The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.

making simple change to check branch protection in action.
1 change: 1 addition & 0 deletions testFile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test file for triggering build.