diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..3458f20f --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,17 @@ +pipeline { + agent any + stages { + stage('pull code') { + steps { + sh 'echo \'i am in pull code - shell script\'' + } + } + + stage('build code') { + steps { + sh 'echo \'i am in build code\'' + } + } + + } +} \ No newline at end of file