Gitlab CI/CD

gitlab ci:

ci.yml配置文件:
stages:
  - ci
  
build:
  stage: ci
  script:
    - curl http://host:port/downGitlabCiShApi > ci.sh
    - chmod 751 ./ci.sh
    - ./ci.sh

gitlab webhook配置:
URL: 特定事件被触发后需要回调的URL
SecretToken:校验码
Trigger: 监听触发的事件
屏幕快照 2020-07-07 上午9.55.17.png

你可能感兴趣的:(ci)