test/.drone.yml
2024-08-22 17:18:18 +08:00

52 lines
1.3 KiB
YAML

kind: pipeline
type: docker
name: microservice-build
# 定义全局环境变量
environment:
SERVICE: ""
steps:
- name: build-service
image: maven:3-jdk-8
environment:
SERVICE: ${DRONE_SERVICE} # 在每个步骤中引用环境变量
commands:
- echo "Building Service: ${SERVICE}"
- |
if [ "${SERVICE}" = "gateway-service" ]; then
echo "Building Gateway Service..."
elif [ "${SERVICE}" = "system-service" ]; then
echo "Building System Service..."
else
echo "Building All Services..."
# 如果有其他服务,可以在这里继续添加
fi
- name: test-service
image: maven:3-jdk-8
environment:
SERVICE: ${DRONE_SERVICE} # 在每个步骤中引用环境变量
commands:
- echo "Testing Service: ${SERVICE}"
- |
if [ "${SERVICE}" = "gateway-service" ]; then
echo "Testing Gateway Service..."
elif [ "${SERVICE}" = "system-service" ]; then
echo "Testing System Service..."
else
echo "Testing All Services..."
# 如果有其他服务,可以在这里继续添加
fi
parameters:
SERVICE:
description: "The service to build and test. Leave empty to build and test all services."
default: ""