Merge pull request #384 from chuckwagoncomputing/kicad-8

Kicad 8
This commit is contained in:
rusefillc 2024-04-16 13:26:56 -04:00 committed by GitHub
commit b994299417
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ jobs:
- name: Install kicad
run: |
sudo add-apt-repository --yes ppa:kicad/kicad-7.0-releases
sudo add-apt-repository --yes ppa:kicad/kicad-8.0-releases
sudo apt-get install kicad
pip install kicad-netlist-reader

View File

@ -51,8 +51,8 @@ echo Export positions file
kicad-cli pcb export pos --format csv --units mm --use-drill-file-origin --bottom-negate-x "$PCB_FILE" -o "gerber/$IN-all-pos.csv"
echo Getting Drill/Place origin from PCB
X=$(grep "aux_axis_origin" "$PCB_FILE" | tr -s ' ' | cut -d ' ' -f 3)
Y=$(grep "aux_axis_origin" "$PCB_FILE" | tr -s ' ' | cut -d ' ' -f 4 | tr -d ')')
X=$(grep "aux_axis_origin" "$PCB_FILE" | tr ' ' ' ' | tr -s ' ' | cut -d ' ' -f 3)
Y=$(grep "aux_axis_origin" "$PCB_FILE" | tr ' ' ' ' | tr -s ' ' | cut -d ' ' -f 4 | tr -d ')')
if [ ! "$Y" ]; then
echo "aux_axis_origin is missing in the PCB file"
exit -1