-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: optimize ci configuration script
- Loading branch information
liuqiang
committed
Dec 25, 2024
1 parent
3b22f1c
commit 3947d63
Showing
10 changed files
with
66 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
build_idf_examples: | ||
stage: build | ||
image: ${CI_DOCKER_REGISTRY}/esp-env-${DEFAULT_BUILD_DOCKER_ENV} | ||
extends: | ||
- .update_zigbee_lib_script | ||
artifacts: | ||
paths: | ||
- "**/build*/*.bin" | ||
- "**/build*/*.map" | ||
- "**/build*/*.elf" | ||
- "**/build*/flasher_args.json" | ||
- "**/build*/flash_project_args" | ||
- "**/build*/config/sdkconfig.json" | ||
- "**/build*/bootloader/*.bin" | ||
- "**/build*/partition_table/*.bin" | ||
when: always | ||
expire_in: 4 days | ||
variables: | ||
IDF_VERSION: ${DEFAULT_IDF_VERSION} | ||
script: | ||
- cd ${IDF_PATH} | ||
- python ${CI_PROJECT_DIR}/tools/ci/build_apps.py ./examples/zigbee | ||
tags: | ||
- build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters