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