diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..f60335c --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + sh 'echo build' + } + } + stage('Test'){ + steps { + sh 'echo test' + } + } + stage('Deploy') { + steps { + sh 'echo publish' + } + } + } +} \ No newline at end of file