From 9c808d8a941f302fa94779b2c16ff28bff4878a2 Mon Sep 17 00:00:00 2001 From: zhangdd <86431843@qq.com> Date: Thu, 1 Apr 2021 16:48:43 +0800 Subject: [PATCH] test Signed-off-by: zhangdd <86431843@qq.com> --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index b7fb5cd..e31dadf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,12 @@ pipeline { /* Jenkins为流水线分配一个执行器和工作区*/ agent any + def singlyQuoted='hello' + def doublyQuoted="world" + + echo 'hello mr. ${singlyQuoted}' + echo "i said hello mr. ${doublyQuoted}" + stages { stage('Git Checkout') { -- GitLab