Skip to content

ci: updated workflow script for changes only #2

ci: updated workflow script for changes only

ci: updated workflow script for changes only #2

Workflow file for this run

name: PR Check
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Adjust the Python version as required
- name: Run lib_check.sh and Check for Violations
run: |
chmod +x lib_check.sh
./lib_check.sh | tee output.txt
if grep -q "Violating" output.txt && ! grep -q "Violating S4.3" output.txt; then
echo "Violation found in script output"
exit 1
fi
jobs:

Check failure on line 28 in .github/workflows/pr-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-check.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
kicad-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Ensures history is available for diff
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Specify Python version
- name: Run KiCad Library Checks
run: |
git fetch origin main:main
violations_found=false
for file in $(git diff --name-only main...HEAD -- ./symbols ./footprints); do
if [[ "$file" == *.kicad_sym ]]; then
output=$(./kicad-library-utils/klc-check/check_symbol.py "$file" -vv)
elif [[ "$file" == *"/footprints/"* ]]; then
output=$(./kicad-library-utils/klc-check/check_footprint.py "$file" -vv)
fi
echo "$output"
if [[ "$output" == *"Violating"* ]]; then
if [[ "$output" != *"Violating S4.3"* ]] || [[ "$output" =~ "Violating"(.*)"Violating S4.3" ]]; then
violations_found=true
fi
fi
done
if [ "$violations_found" = true ] ; then
echo "Error: Violation detected other than 'Violating S4.3'"
exit 1
fi