forked from espressif/esp-iot-solution
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert CRLF to LF & Remove x mode of no-executables
1. Convert line endings using "git ls-tree -r HEAD --name-only | xargs dos2unix" 2. Remove x mode using "git ls-files --stage | grep -E '^100755' | cut -f 2 | grep -vE '\.py$|\.sh$' | xargs chmod -x"
- Loading branch information
Showing
200 changed files
with
18,028 additions
and
17,998 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ check_copyright: | |
before_script: | ||
- pip install git+https://github.com/espressif/[email protected] | ||
script: | ||
- python -m check_copyright --verbose --dry-run --ignore tools/ci/ignore_list_copyright.txt --config tools/ci/check_copyright_config.yaml . | ||
- python -m check_copyright --verbose --dry-run --ignore tools/ci/ignore_list_copyright --config tools/ci/check_copyright_config.yaml . | ||
|
||
check_example_paths: | ||
extends: | ||
|
@@ -42,6 +42,7 @@ check_pre_commit: | |
# print the MODIFIED_FILES | ||
echo "MODIFIED_FILES: $MODIFIED_FILES" | ||
- pre-commit install --allow-missing-config -t pre-commit -t commit-msg | ||
- export SKIP=check-copyright # copyrights has been checked in separate job | ||
- pre-commit run --files $MODIFIED_FILES | ||
|
||
check_readme_links: | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
idf_component_register(SRCS "dac_audio.c" | ||
INCLUDE_DIRS "include" | ||
REQUIRES driver) | ||
idf_component_register(SRCS "dac_audio.c" | ||
INCLUDE_DIRS "include" | ||
REQUIRES driver) |
Oops, something went wrong.