v4.0-rc3: nxp weekly report #1386
Workflow file for this run
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
name: Compliance | |
on: pull_request | |
jobs: | |
compliance_job: | |
runs-on: ubuntu-latest | |
name: Run compliance checks on patch series (PR) | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v1 | |
- name: cache-pip | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-doc-pip | |
- name: Install python dependencies | |
run: | | |
pip3 install setuptools | |
pip3 install wheel | |
pip3 install python-magic junitparser gitlint pylint pykwalify | |
- name: Run Compliance Tests | |
id: compliance | |
run: | | |
export PATH=$PATH:~/.local/bin | |
export ZEPHYR_BASE=$PWD | |
git config --global user.email "[email protected]" | |
git config --global user.name "Your Name" | |
git rebase origin/master | |
./scripts/check_compliance.py -m Codeowners -m Gitlint -m Identity -m pylint -c origin/master.. || true | |
- name: upload-results | |
uses: actions/upload-artifact@master | |
continue-on-error: True | |
with: | |
name: compliance.xml | |
path: compliance.xml | |
- name: check-warns | |
run: | | |
if [ -s Nits.txt ]; then | |
errors=$(cat Nits.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=Nits.txt::$errors" | |
exit=1 | |
fi | |
if [ -s checkpatch.txt ]; then | |
errors=$(cat checkpatch.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=Checkpatch.txt::$errors" | |
exit=1 | |
fi | |
if [ -s Identity.txt ]; then | |
errors=$(cat Identity.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=Identity.txt::$errors" | |
exit=1 | |
fi | |
if [ -s Gitlint.txt ]; then | |
errors=$(cat Gitlint.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=Gitlint.txt::$errors" | |
exit=1 | |
fi | |
if [ -s pylint.txt ]; then | |
errors=$(cat pylint.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=pylint.txt::$errors" | |
exit=1 | |
fi | |
if [ -s Devicetree.txt ]; then | |
errors=$(cat Devicetree.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=Devicetree.txt::$errors" | |
exit=1 | |
fi | |
if [ -s Kconfig.txt ]; then | |
errors=$(cat Kconfig.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=Kconfig.txt::$errors" | |
exit=1 | |
fi | |
if [ -s Codeowners.txt ]; then | |
errors=$(cat Codeowners.txt) | |
errors="${errors//'%'/'%25'}" | |
errors="${errors//$'\n'/'%0A'}" | |
errors="${errors//$'\r'/'%0D'}" | |
echo "::error file=Codeowners.txt::$errors" | |
exit=1 | |
fi | |
if [ ${exit} == 1 ]; then | |
exit 1; | |
fi |