2022-07-12 04:48:54 -04:00
|
|
|
# pull only for most of the use cases for cache
|
|
|
|
# only set "push" policy for the jobs under this file.
|
|
|
|
# The cache would be updated when files matched specified patterns changes.
|
|
|
|
|
2022-06-06 21:05:15 -04:00
|
|
|
.upload_cache_template:
|
|
|
|
stage: upload_cache
|
|
|
|
image: $ESP_ENV_IMAGE
|
|
|
|
|
2022-07-12 04:48:54 -04:00
|
|
|
upload-pip-cache:
|
2022-06-06 21:05:15 -04:00
|
|
|
extends:
|
|
|
|
- .upload_cache_template
|
|
|
|
- .rules:patterns:python-cache
|
2022-07-12 04:48:54 -04:00
|
|
|
tags:
|
|
|
|
- $GEO
|
|
|
|
- build
|
2022-06-06 21:05:15 -04:00
|
|
|
cache:
|
|
|
|
key: pip-cache
|
|
|
|
paths:
|
|
|
|
- .cache/pip
|
|
|
|
policy: push
|
|
|
|
before_script: []
|
|
|
|
script:
|
|
|
|
- source tools/ci/utils.sh
|
|
|
|
- is_based_on_commits $REQUIRED_ANCESTOR_COMMITS
|
|
|
|
- source tools/ci/setup_python.sh
|
|
|
|
- rm -rf .cache/pip # clear old packages
|
2022-07-29 04:12:22 -04:00
|
|
|
- $IDF_PATH/tools/idf_tools.py install-python-env --features pytest,ci
|
2022-07-12 04:48:54 -04:00
|
|
|
parallel:
|
|
|
|
matrix:
|
|
|
|
- GEO: [ 'shiny', 'brew' ]
|
2022-06-06 21:05:15 -04:00
|
|
|
|
2022-07-12 04:48:54 -04:00
|
|
|
upload-submodules-cache:
|
|
|
|
extends:
|
|
|
|
- .upload_cache_template
|
|
|
|
- .rules:patterns:submodule
|
2022-06-06 21:05:15 -04:00
|
|
|
tags:
|
2022-07-12 04:48:54 -04:00
|
|
|
- $GEO
|
2022-06-06 21:05:15 -04:00
|
|
|
- build
|
2022-07-12 04:48:54 -04:00
|
|
|
cache:
|
|
|
|
key: submodule-cache
|
|
|
|
paths:
|
|
|
|
- .cache/submodule_archives
|
|
|
|
policy: push
|
|
|
|
before_script: []
|
|
|
|
script:
|
|
|
|
- source tools/ci/utils.sh
|
|
|
|
- is_based_on_commits $REQUIRED_ANCESTOR_COMMITS
|
|
|
|
- source tools/ci/setup_python.sh
|
|
|
|
- rm -rf .cache/submodule_archives # clear old submodule archives
|
|
|
|
- fetch_submodules
|
|
|
|
parallel:
|
|
|
|
matrix:
|
|
|
|
- GEO: [ 'shiny', 'brew' ]
|