This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dongxiaoyan-tsg-autotest/.gitlab-ci.yml
2020-07-27 12:35:24 +08:00

64 lines
1.5 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

stages:
- develop #运行的类型,有
- developagain
wp: #随意填写起标示作用wp指全流程测试
stage: develop #和上述的类型对应
only:
- develop #指定触发分支
tags:
- "155auto"
script:
- pwd
- docker stop auto-custom-clibrary-wp || true && docker rm auto-custom-clibrary-wp || true
- cd docker/wp
- docker-compose build
- time=`date +%m%d` docker-compose up -d
com: #随意填写起标示作用com指cli测试
stage: develop #和上述的类型对应
only:
- develop #指定触发分支
tags:
- "155auto"
script:
- pwd
- docker stop auto-custom-clibrary-com || true && docker rm auto-custom-clibrary-com || true
- cd docker/com
- docker-compose build
- time=`date +%m%d` docker-compose up -d
156wp: #随意填写,起标示作用
stage: developagain #和上述的类型对应
only:
- wwww #指定触发分支
tags:
- "156auto"
script:
- pwd
- docker stop auto-custom-clibrary-wp || true && docker rm auto-custom-clibrary-wp || true
- cd docker/wp
- docker-compose build
- time=`date +%m%d` docker-compose up -d
156com: #随意填写,起标示作用
stage: developagain #和上述的类型对应
only:
- eeee #指定触发分支
tags:
- "156auto"
script:
- pwd
- docker stop auto-custom-clibrary-com || true && docker rm auto-custom-clibrary-com || true
- cd docker/com
- docker-compose build
- time=`date +%m%d` docker-compose up -d