mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-23 09:43:41 +08:00
reverts script readability change since it doesn't work properly.
This commit is contained in:
parent
2645d10405
commit
037ddbe963
44
.github/workflows/check_bom.yml
vendored
44
.github/workflows/check_bom.yml
vendored
@ -17,27 +17,33 @@ jobs:
|
||||
|
||||
- name: UTF-8 BOM
|
||||
run: |
|
||||
grep -oarlE -m 1 --include="*.{c,h,rst,txt,mk,py,cmake}" --include="Makefile" $'\xEF\xBB\xBF' . | while read -r line; do
|
||||
a=$(head -c 3 "$line")
|
||||
if [ "${a}" = $'\xEF\xBB\xBF' ]; then
|
||||
echo "${line}" && exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
grep -oarlE -m 1 --include="*.c" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.h" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.rst" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.txt" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.mk" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.py" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="Makefile" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.cmake" $'\xEF\xBB\xBF' . | while read -r line; do a=$(head -c 3 $line); if [ "${a}" = $'\xEF\xBB\xBF' ]; then echo "${line}" && exit 1; fi; done
|
||||
|
||||
- name: UTF-16LE BOM
|
||||
run: |
|
||||
grep -oarlE -m 1 --include="*.{c,h,rst,txt,mk,py,cmake}" --include="Makefile" $'\xFF\xFE' . | while read -r line; do
|
||||
a=$(head -c 3 "$line")
|
||||
if [ "${a}" = $'\xFF\xFE' ]; then
|
||||
echo "${line}" && exit 1
|
||||
fi
|
||||
done
|
||||
grep -oarlE -m 1 --include="*.c" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.h" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.rst" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.txt" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.mk" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.py" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="Makefile" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.cmake" $'\xFF\xFE' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFF\xFE' ]; then echo "${line}" && exit 1; fi; done
|
||||
|
||||
- name: UTF-16BE BOM
|
||||
run: |
|
||||
grep -oarlE -m 1 --include="*.{c,h,rst,txt,mk,py,cmake}" --include="Makefile" $'\xFE\xFF' . | while read -r line; do
|
||||
a=$(head -c 3 "$line")
|
||||
if [ "${a}" = $'\xFE\xFF' ]; then
|
||||
echo "${line}" && exit 1
|
||||
fi
|
||||
done
|
||||
grep -oarlE -m 1 --include="*.c" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.h" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.rst" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.txt" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.mk" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.py" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="Makefile" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
grep -oarlE -m 1 --include="*.cmake" $'\xFE\xFF' . | while read -r line; do a=$(head -c 2 $line); if [ "${a}" = $'\xFE\xFF' ]; then echo "${line}" && exit 1; fi; done
|
||||
|
Loading…
Reference in New Issue
Block a user