diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..6c4ba86 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + agent any +} + +// triggers { +// pollSCM('* * * * *') +// } + +stages { + stage('Build doc') { + steps { + sh 'echo "Build doc"' + } + } + + stage('Upload doc') { + steps { + sh 'echo "Upload doc"' + } + } +}