Commit 3f99133d by yiling.shen

Remove corrupted .gitlab-ci.yml and clean up repository

parent 19ebca36
test_job:
script: "echo 'Hello World'"
only:
- master
\ No newline at end of file
# 最简单的GitLab CI/CD配置
test_job:
script:
- echo "Hello World"
only:
- master
\ No newline at end of file
# 简化版GitLab CI/CD配置 - 用于测试
stages:
- test
simple_test:
stage: test
image: alpine:latest
# 移除标签限制,使用任何可用的Runner
# tags:
# - jarvis
script:
- echo "🚀 开始测试部署..."
- echo "📅 当前时间: $(date)"
- echo "🏥 项目: 患者画像回访话术系统"
- echo "✅ 测试成功!"
only:
- master
when: always
\ No newline at end of file
# 最简单的测试配置
test_job:
script:
- echo "Hello World"
- echo "测试成功"
only:
- master
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment