From bd1ce64bfacf542c4535095bba0a8a7b0a4c1578 Mon Sep 17 00:00:00 2001 From: "kuang.yife" Date: Mon, 30 Oct 2023 17:40:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8D=8E=E4=B8=BA=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BD=92=E5=9B=A0=E5=88=86=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..f60335c8 --- /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