多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# This folder is cached between builds # http://docs.gitlab.com/ce/ci/yaml/README.html#cache # cache: # paths: # - vendor/ # This is a basic example for a gem or script which doesn't use # services such as redis or postgres before_script: - php -v - pwd stages: - deploy_test # 部署测试 deploy_test: stage: deploy_test script: - echo "部署测试环境" - git fetch origin - git reset --hard origin/develop - find . -name ".git" | xargs rm -Rf - cp -R ./ /www/wwwroot/wap only: - develop