From b8998ae27c77e846f2c473c64677a4566f4b55d7 Mon Sep 17 00:00:00 2001 From: bob <188140725@qq.com> Date: Tue, 25 May 2021 09:08:30 +0000 Subject: [PATCH] =?UTF-8?q?update:=E6=B7=BB=E5=8A=A0jenkins=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=E7=BA=BF?= 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 0000000..f089300 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + echo 'StartBuild' + sh '''echo \'start build\'; +''' + } + } + + stage('Test') { + steps { + echo 'Start Test' + sh 'echo \'dotnet test\';' + } + } + + } +} \ No newline at end of file