6 Star 35 Fork 4

乐鑫开源 / esp-at

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.gitlab-ci.yml 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
stages:
- pre_check
- build
- deploy
- deploy_docs
- post_deploy
workflow:
rules:
# Disable those non-protected push triggered pipelines
- if: '$CI_COMMIT_REF_NAME != "master" && $CI_COMMIT_BRANCH !~ /^release\/v/ && $CI_COMMIT_TAG !~ /^v\d+\.\d+(\.\d+)?($|-)/ && $CI_PIPELINE_SOURCE == "push"'
when: never
# when running merged result pipelines, it would create a temp commit id. use $CI_MERGE_REQUEST_SOURCE_BRANCH_SHA instead of $CI_COMMIT_SHA.
# Please use PIPELINE_COMMIT_SHA at all places that require a commit sha
- if: $CI_OPEN_MERGE_REQUESTS != null
variables:
PIPELINE_COMMIT_SHA: $CI_MERGE_REQUEST_SOURCE_BRANCH_SHA
- if: $CI_OPEN_MERGE_REQUESTS == null
variables:
PIPELINE_COMMIT_SHA: $CI_COMMIT_SHA
- when: always
# global variables
variables:
GIT_STRATEGY: clone
default:
retry:
max: 2
when: always
include:
- '.gitlab/ci/rules.yml'
- '.gitlab/ci/pre_check.yml'
- '.gitlab/ci/build_template.yml'
- '.gitlab/ci/build_docs.yml'
- '.gitlab/ci/build_esp32.yml'
- '.gitlab/ci/build_esp32c2.yml'
- '.gitlab/ci/build_esp32c3.yml'
- '.gitlab/ci/build_esp32c6.yml'
- '.gitlab/ci/deploy.yml'
- '.gitlab/ci/post_deploy.yml'
C
1
https://gitee.com/EspressifSystems/esp-at.git
git@gitee.com:EspressifSystems/esp-at.git
EspressifSystems
esp-at
esp-at
master

搜索帮助