Home
last modified time | relevance | path

Searched +full:component_ut +full:- +full:esp32s3 (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.5.0/.gitlab/ci/
Dbuild.yml5 - build
12 - test "$CI_CCACHE_STATS" == 1 && test -n "$(which ccache)" && ccache --show-stats || true
27 - log_template_app/*
28 - size_info.txt
29 - build_template_app/**/size.json
31 # Set the variable for 'esp-idf-template' testing
32- ESP_IDF_TEMPLATE_GIT=${ESP_IDF_TEMPLATE_GIT:-"https://github.com/espressif/esp-idf-template.git"}
33 - retry_failed git clone ${ESP_IDF_TEMPLATE_GIT}
34 # Try to use the same branch name for esp-idf-template that we're
35 # using on esp-idf. If it doesn't exist then just stick to the default branch
[all …]
Drules.yml4 .patterns-c-files: &patterns-c-files
5 - ".gitlab/ci/static-code-analysis.yml"
7 - "tools/ci/static-analysis-rules.yml"
8 - "tools/ci/clang_tidy_dirs.txt"
10 - "**/*.{c,C}"
11 - "**/*.{h,H}"
12 - "components/**/Kconfig"
13 - "components/**/CMakeList.txt"
15 .patterns-python-files: &patterns-python-files
16 - ".gitlab/ci/static-code-analysis.yml"
[all …]
Dtarget-test.yml13 - "**/*.log"
14 - $LOG_PATH
16 - .git/**/*
21 TEST_FW_PATH: "$CI_PROJECT_DIR/tools/tiny-test-fw"
23 ENV_FILE: "$CI_PROJECT_DIR/ci-test-runner-configs/$CI_RUNNER_DESCRIPTION/EnvConfig.yml"
26 - *define_config_file_name
28 - |
29 …{ [[ -e $CONFIG_FILE ]]; } || { echo 'No config file found. Consider decreasing the parallel count…
31 - retry_failed git clone $TEST_ENV_CONFIG_REPO
32 - python $CHECKOUT_REF_SCRIPT ci-test-runner-configs ci-test-runner-configs
[all …]
Dpre_check.yml5 - host_test
10 - .pre_check_base_template
11 - .before_script_no_sync_submodule
15 image: "$CI_DOCKER_REGISTRY/esp-idf-pre-commit:1"
17 - source tools/ci/utils.sh
18 - export PYTHONPATH="$CI_PROJECT_DIR/tools:$CI_PROJECT_DIR/tools/ci/python_packages:$PYTHONPATH"
22 - .check_pre_commit_template
23 - .rules:protected
25- git diff-tree --no-commit-id --name-only -r $PIPELINE_COMMIT_SHA | xargs pre-commit run --files
29 - .check_pre_commit_template
[all …]
/hal_espressif-3.5.0/.gitlab/ci/dependencies/
Ddependencies.yml2 - esp32
3 - esp32s2
4 - esp32s3
5 - esp32c3
8 - example_test
9 - custom_test
10 - unit_test
11 - component_ut
18 - build
20 - build_components
[all …]
/hal_espressif-3.5.0/tools/ci/python_packages/ttfw_idf/
DIDFAssignTest.py103 LOCAL_BUILD_DIR = 'tools/unit-test-app/builds' # type: ignore
114 'esp32s3': 'ESP32S3DUT',
254 The unit test cases is stored in a yaml file which is created in job build-idf-test.
316 …er.add_argument('case_group', choices=['example_test', 'custom_test', 'unit_test', 'component_ut'])
318 parser.add_argument('-c', '--config', help='gitlab ci config file')
319 parser.add_argument('-o', '--output', help='output path of config files')
320 parser.add_argument('--pipeline_id', '-p', type=int, default=None, help='pipeline_id')
321 …parser.add_argument('--test-case-file-pattern', help='file name pattern used to find Python test c…
334 elif args.case_group == 'component_ut':