Update Jenkinsfile-basic

This commit is contained in:
Nana Janashia
2020-11-05 14:31:01 +00:00
parent 8fb1d04fa8
commit c4cba3ddc6

View File

@@ -1,26 +0,0 @@
pipeline {
agent any
stages {
stage("build") {
steps {
echo 'building the application...'
}
}
stage("test") {
steps {
echo 'testing the application...'
}
}
stage("deploy") {
steps {
echo 'deploying the application...'
}
}
}
}