forked from espressif/esp-gmf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
33 lines (30 loc) · 791 Bytes
/
.gitlab-ci.yml
File metadata and controls
33 lines (30 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
stages:
- pre_check
- build
- target_test
- deploy
variables:
GIT_STRATEGY: clone
GET_SOURCES_ATTEMPTS: "10"
ARTIFACT_DOWNLOAD_ATTEMPTS: "10"
GIT_SUBMODULE_STRATEGY: none
IDF_SKIP_CHECK_SUBMODULES: 1
GIT_DEPTH: 1
IDF_PATH: "/root/.espressif/esp-idf"
PROJECT_PATH: "${CI_PROJECT_DIR}"
BASE_FRAMEWORK: $IDF_REPOSITORY
BASE_FRAMEWORK_PATH: "${IDF_PATH}"
TARGET_DIR_TYPE: "example"
EXAMPLES_PATH: "${CI_PROJECT_DIR}"
before_script:
- source ${CI_PROJECT_DIR}/tools/ci/utils.sh
- add_gitlab_ssh_keys
include:
- '.gitlab/ci/rules.yml'
- '.gitlab/ci/common.yml'
- '.gitlab/ci/pre_check.yml'
- '.gitlab/ci/build_examples.yml'
- '.gitlab/ci/build_ut.yml'
- '.gitlab/ci/target_ut.yml'
- '.gitlab/ci/target_examples.yml'
- '.gitlab/ci/deploy.yml'