审查视图

.gitlab-ci.yml 383 字节
何书鹏 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#  stages
stages:
  - pull

#  job  华为测试服务添加自动部署
job1:
  stage: pull
  tags:
  - huawei8
  script:
    - whoami
    - cd /home/wwwroot/t/ant
    - git pull
    
#  job 华为正式服务器添加自动部署 两个job同时存在为同时向两个服务器推送
何书鹏 authored
16 17 18 19 20 21 22
job2:
  stage: pull
  tags:
  - huawei9
  script:
    - cd /home/wwwroot/fast/ant
    - git pull