Update Jenkinsfile-basic
This commit is contained in:
26
Jenkinsfile
vendored
Normal file
26
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
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...'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user