diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..36b6218 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,33 @@ +pipeline { + + agent any + + stages { + + stage('Checkout') { + steps { + sh 'echo "Checkout code"' + } + } + + stage('Compile') { + steps { + sh 'echo "compile application..."' + } + } + + stage('Test') { + steps { + sh 'echo "Test application..."' + } + } + stage("Package application") { + steps { + sh 'echo "package application..."' + } + + } + + } + + }