🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 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