commit 97620abf682df56c20d8ced1d8a435860a79120d Author: ubuntu Date: Wed Apr 2 15:12:23 2025 +0800 add jenkins diff --git a/jenkinfile b/jenkinfile new file mode 100644 index 0000000..b1d2e56 --- /dev/null +++ b/jenkinfile @@ -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' + } + } + } +}