2019-06-28 16:39:21 +00:00
|
|
|
# copy from .gitlab-ci.yml as anchor is not global
|
|
|
|
.show_submodule_urls: &show_submodule_urls |
|
|
|
|
git config --get-regexp '^submodule\..*\.url$' || true
|
|
|
|
|
|
|
|
check_submodule_sync:
|
|
|
|
extends: .check_job_template
|
2019-11-12 07:59:11 +00:00
|
|
|
stage: post_check
|
2019-06-28 16:39:21 +00:00
|
|
|
tags:
|
|
|
|
- github_sync
|
|
|
|
retry: 2
|
|
|
|
variables:
|
|
|
|
GIT_STRATEGY: clone
|
|
|
|
GIT_SUBMODULE_STRATEGY: none
|
|
|
|
PUBLIC_IDF_URL: "https://github.com/espressif/esp-idf.git"
|
|
|
|
before_script: []
|
|
|
|
after_script: []
|
|
|
|
script:
|
|
|
|
- git submodule deinit --force .
|
|
|
|
# setting the default remote URL to the public one, to resolve relative location URLs
|
|
|
|
- git config remote.origin.url ${PUBLIC_IDF_URL}
|
|
|
|
# check if all submodules are correctly synced to public repostory
|
|
|
|
- git submodule init
|
|
|
|
- *show_submodule_urls
|
|
|
|
- git submodule update --recursive
|
|
|
|
- echo "IDF was cloned from ${PUBLIC_IDF_URL} completely"
|
|
|
|
|
2019-11-11 13:31:34 +00:00
|
|
|
check_wifi_lib_md5:
|
|
|
|
extends: .check_job_template
|
|
|
|
tags:
|
|
|
|
- build
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- tools/idf_tools.py --non-interactive install && eval "$(tools/idf_tools.py --non-interactive export)"
|
|
|
|
- git submodule update --init components/esp_wifi/lib
|
|
|
|
- IDF_TARGET=esp32 $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh
|
|
|
|
- IDF_TARGET=esp32s2beta $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh
|
|
|
|
|
2019-11-12 07:59:11 +00:00
|
|
|
check_ut_cmake_make:
|
|
|
|
extends: .check_job_template_with_filter
|
|
|
|
stage: post_check
|
|
|
|
image: $CI_DOCKER_REGISTRY/esp32-ci-env$BOT_DOCKER_IMAGE_TAG
|
|
|
|
tags:
|
|
|
|
- build
|
|
|
|
except:
|
|
|
|
- master
|
|
|
|
- /^release\/v/
|
|
|
|
- /^v\d+\.\d+(\.\d+)?($|-)/
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- tools/ci/check_ut_cmake_make.sh
|
|
|
|
|
2019-06-28 16:39:21 +00:00
|
|
|
check_artifacts_expire_time:
|
|
|
|
extends: .check_job_template
|
2019-11-12 07:59:11 +00:00
|
|
|
stage: post_check
|
2019-06-28 16:39:21 +00:00
|
|
|
script:
|
|
|
|
# check if we have set expire time for all artifacts
|
|
|
|
- python tools/ci/check_artifacts_expire_time.py
|
|
|
|
|
|
|
|
check_pipeline_triggered_by_label:
|
|
|
|
extends: .check_job_template
|
|
|
|
stage: post_check
|
|
|
|
only:
|
|
|
|
variables:
|
|
|
|
- $BOT_TRIGGER_WITH_LABEL
|
|
|
|
script:
|
|
|
|
# If the pipeline is triggered with label, the pipeline will only succeeded if "regular_test" label is added.
|
|
|
|
# We want to make sure some jobs are always executed to detect regression.
|
|
|
|
- test "$BOT_LABEL_REGULAR_TEST" = "true" || { echo "CI can only pass if 'regular_test' label is included"; exit -1; }
|
2019-11-12 07:59:11 +00:00
|
|
|
|
|
|
|
check_commit_msg:
|
|
|
|
extends: .check_job_template
|
|
|
|
stage: post_check
|
|
|
|
script:
|
|
|
|
- git status
|
|
|
|
- git log -n10 --oneline
|
|
|
|
# commit start with "WIP: " need to be squashed before merge
|
|
|
|
- 'git log --pretty=%s master.. -- | grep "^WIP: " && exit 1 || exit 0'
|