Ensure manually routed boards are not deleted
This commit is contained in:
parent
41d89b1213
commit
7b22f18f14
15
build.sh
15
build.sh
|
|
@ -4,12 +4,24 @@ container_cmd=docker
|
||||||
# at the repo root (when running the script from there)
|
# at the repo root (when running the script from there)
|
||||||
container_args="-w /board -v $(pwd):/board --rm"
|
container_args="-w /board -v $(pwd):/board --rm"
|
||||||
|
|
||||||
|
# Preserve manually routed files
|
||||||
|
if [ -e ergogen/output/pcbs/*_manually_routed.kicad_pcb ]; then
|
||||||
|
mkdir ergogen/tmp
|
||||||
|
mv ergogen/output/pcbs/*_manually_routed* ergogen/tmp
|
||||||
|
fi
|
||||||
|
|
||||||
# Cleanup the output folder or KiCad will error out
|
# Cleanup the output folder or KiCad will error out
|
||||||
rm -rf ergogen/output
|
rm -rf ergogen/output
|
||||||
|
|
||||||
# Generate unrouted PCBs with Ergogen (definition in package.json)
|
# Generate unrouted PCBs with Ergogen (definition in package.json)
|
||||||
npm run debug
|
npm run debug
|
||||||
|
|
||||||
|
# Restore manually routed files
|
||||||
|
if [ -e ergogen/tmp/*_manually_routed.kicad_pcb ]; then
|
||||||
|
mv ergogen/tmp/*_manually_routed* ergogen/output/pcbs
|
||||||
|
rm -r ergogen/tmp
|
||||||
|
fi
|
||||||
|
|
||||||
# Define the boards to autoroute and export, and the plates
|
# Define the boards to autoroute and export, and the plates
|
||||||
boards="corney_island"
|
boards="corney_island"
|
||||||
plates="backplate frontplate controller_overlay"
|
plates="backplate frontplate controller_overlay"
|
||||||
|
|
@ -34,6 +46,9 @@ done
|
||||||
for board in ${boards}
|
for board in ${boards}
|
||||||
do
|
do
|
||||||
echo "\n\n>>>>>> Processing $board <<<<<<\n\n"
|
echo "\n\n>>>>>> Processing $board <<<<<<\n\n"
|
||||||
|
if [ -e ergogen/output/pcbs/${board}_manually_routed.kicad_pcb ]; then
|
||||||
|
${container_cmd} run ${container_args} ghcr.io/inti-cmnb/kicad7_auto:latest kibot -b ergogen/output/pcbs/${board}_manually_routed.kicad_pcb -c kibot/boards.kibot.yaml
|
||||||
|
fi
|
||||||
${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /bin/sh -c "mkdir -p $HOME/.config/kicad; cp /root/.config/kicad/* $HOME/.config/kicad"
|
${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /bin/sh -c "mkdir -p $HOME/.config/kicad; cp /root/.config/kicad/* $HOME/.config/kicad"
|
||||||
if [ -e ergogen/output/pcbs/${board}.kicad_pcb ]; then
|
if [ -e ergogen/output/pcbs/${board}.kicad_pcb ]; then
|
||||||
echo Export DSN
|
echo Export DSN
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue