Compare commits

..

No commits in common. "eb4d9d6b7c05e2cef5d8ca69f90115a4d21ec50d" and "daa7c076f0d3af9a8492b2925f1f81d631de0958" have entirely different histories.

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....'
}
}
}
}