From 9b70eca9eedf1e632f7b19615fec6b919056d4cd Mon Sep 17 00:00:00 2001 From: XinWei <2718030729@qq.com> Date: Thu, 22 Aug 2024 17:24:58 +0800 Subject: [PATCH] 'build' --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index c54d6d6..598175a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,7 +12,7 @@ steps: environment: SERVICE: ${DRONE_SERVICE} # 在每个步骤中引用环境变量 commands: - - echo "Building Service: ${SERVICE}" +# - echo "Building Service: ${SERVICE}" - if [ "${SERVICE}" = "gateway-service" ]; then echo "Building Gateway Service..."; fi - if [ "${SERVICE}" = "system-service" ]; then echo "Building System Service..."; fi - if [ "${SERVICE}" = "" ]; then echo "Building All Services..."; fi @@ -22,7 +22,7 @@ steps: environment: SERVICE: ${DRONE_SERVICE} # 在每个步骤中引用环境变量 commands: - - echo "Testing Service: ${SERVICE}" +# - echo "Testing Service: ${SERVICE}" - if [ "${SERVICE}" = "gateway-service" ]; then echo "Testing Gateway Service..."; fi - if [ "${SERVICE}" = "system-service" ]; then echo "Testing System Service..."; fi - if [ "${SERVICE}" = "" ]; then echo "Testing All Services..."; fi