added Jenkinsfile

This commit is contained in:
Marvin Zhang
2019-05-31 18:13:55 +08:00
parent b835064698
commit 0fbafe8939

21
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}