mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'ci/move_check_tools_files_patterns_to_pre-commit' into 'master'
ci: move check_tools_files_patterns to pre-commit See merge request espressif/esp-idf!15481
This commit is contained in:
commit
308b89acf3
@ -193,12 +193,3 @@ check_commit_msg:
|
|||||||
- git log -n10 --oneline
|
- git log -n10 --oneline
|
||||||
# commit start with "WIP: " need to be squashed before merge
|
# commit start with "WIP: " need to be squashed before merge
|
||||||
- 'git log --pretty=%s master.. -- | grep "^WIP: " && exit 1 || exit 0'
|
- 'git log --pretty=%s master.. -- | grep "^WIP: " && exit 1 || exit 0'
|
||||||
|
|
||||||
check_tools_file_patterns:
|
|
||||||
extends: .pre_check_job_template
|
|
||||||
image: $CI_DOCKER_REGISTRY/ubuntu-test-env$BOT_DOCKER_IMAGE_TAG
|
|
||||||
variables:
|
|
||||||
PYTHON_VER: 3.7.7
|
|
||||||
script:
|
|
||||||
- python tools/ci/check_tools_files_patterns.py
|
|
||||||
allow_failure: true
|
|
||||||
|
@ -108,6 +108,14 @@ repos:
|
|||||||
language: python
|
language: python
|
||||||
files: \.(py|c|h|cpp|hpp|ld)$
|
files: \.(py|c|h|cpp|hpp|ld)$
|
||||||
require_serial: true
|
require_serial: true
|
||||||
|
- id: check-tools-files-patterns
|
||||||
|
name: Check tools dir files patterns
|
||||||
|
entry: tools/ci/check_tools_files_patterns.py
|
||||||
|
language: python
|
||||||
|
files: '^tools/.+'
|
||||||
|
additional_dependencies:
|
||||||
|
- PyYAML == 5.3.1
|
||||||
|
pass_filenames: false
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.0.1
|
rev: v4.0.1
|
||||||
hooks:
|
hooks:
|
||||||
|
@ -3946,7 +3946,6 @@ tools/ci/check_public_headers.py
|
|||||||
tools/ci/check_readme_links.py
|
tools/ci/check_readme_links.py
|
||||||
tools/ci/check_rules_yml.py
|
tools/ci/check_rules_yml.py
|
||||||
tools/ci/check_soc_struct_headers.py
|
tools/ci/check_soc_struct_headers.py
|
||||||
tools/ci/check_tools_files_patterns.py
|
|
||||||
tools/ci/check_type_comments.py
|
tools/ci/check_type_comments.py
|
||||||
tools/ci/checkout_project_ref.py
|
tools/ci/checkout_project_ref.py
|
||||||
tools/ci/ci_fetch_submodule.py
|
tools/ci/ci_fetch_submodule.py
|
||||||
|
@ -1,18 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# Copyright 2021 Espressif Systems (Shanghai) CO LTD
|
# SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
|
||||||
#
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import fnmatch
|
import fnmatch
|
||||||
@ -35,9 +24,9 @@ def _ishidden(path): # pylint: disable=W0613
|
|||||||
|
|
||||||
fnmatch.translate = translate
|
fnmatch.translate = translate
|
||||||
|
|
||||||
glob.magic_check = magic_check
|
glob.magic_check = magic_check # type: ignore
|
||||||
glob.magic_check_bytes = magic_check_bytes
|
glob.magic_check_bytes = magic_check_bytes # type: ignore
|
||||||
glob._ishidden = _ishidden # pylint: disable=W0212
|
glob._ishidden = _ishidden # type: ignore # pylint: disable=W0212
|
||||||
# ends here
|
# ends here
|
||||||
|
|
||||||
|
|
||||||
@ -80,15 +69,22 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
res = 0
|
res = 0
|
||||||
not_included_files, dup_patterns = check(args.pattern_yml, args.exclude_list)
|
not_included_files, dup_patterns = check(args.pattern_yml, args.exclude_list)
|
||||||
if not_included_files:
|
if not_included_files or dup_patterns:
|
||||||
print('Missing Files: (please add to tools/ci/exclude_check_tools_files.txt')
|
|
||||||
for file in not_included_files:
|
|
||||||
print(file)
|
|
||||||
res = 1
|
|
||||||
if dup_patterns:
|
|
||||||
print('Duplicated Patterns: (please check .gitlab/ci/rules.yml and tools/ci/exclude_check_tools_files.txt')
|
|
||||||
for pattern in dup_patterns:
|
|
||||||
print(pattern)
|
|
||||||
res = 1
|
res = 1
|
||||||
|
print('This test is used for making sure of all the tools dir files are recorded in .gitlab/ci/rules.yml to '
|
||||||
|
'trigger the related tests, except those files should be excluded.')
|
||||||
|
if not_included_files:
|
||||||
|
print('Missing Files:')
|
||||||
|
for file in not_included_files:
|
||||||
|
print('\t' + file)
|
||||||
|
print('Please add these files or glob patterns to ".gitlab/ci/rules.yml" and put related files under '
|
||||||
|
'".patterns-<test_group>" block to trigger related tests.\n'
|
||||||
|
'Or add them to "tools/ci/exclude_check_tools_files.txt" to exclude them.')
|
||||||
|
|
||||||
|
if dup_patterns:
|
||||||
|
print('Duplicated Patterns:')
|
||||||
|
for pattern in dup_patterns:
|
||||||
|
print('\t' + pattern)
|
||||||
|
print('Please remove them from tools/ci/exclude_check_tools_files.txt')
|
||||||
|
|
||||||
sys.exit(res)
|
sys.exit(res)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user