Closed TildeWill closed 9 months ago
@TildeWill
I'm doing this in my fork:
kikit ?= yaqwsx/kikit:v1.3.0
…
output/routed_pcbs/%-front.png: output/routed_pcbs/%.kicad_pcb
mkdir -p $(shell dirname $@)
${container_cmd} run --entrypoint pcbdraw ${container_args} ${kikit} plot --style oshpark-afterdark.json $< $@
output/routed_pcbs/%-back.png: output/routed_pcbs/%.kicad_pcb
mkdir -p $(shell dirname $@)
${container_cmd} run --entrypoint pcbdraw ${container_args} ${kikit} plot --side back --style oshpark-afterdark.json $< $@
Thanks @hedefalk! What changes did you make to the gerbers step that also references kitkit? I get this error:
Board 'output/routed_pcbs/<MY BOARD NAME>.kicad_pcb' has no project, cannot read DRC exclusions
Disregard, I see there's already a PR that answers my question
I'm on OSX, running the repo from a clean checkout of what's currently main HEAD d5f78f63a1e78360cb03efc049de3ee2ea600c02
When I get to this step of
make setup clean all
I get this output/error:
Researching this error seems to point to an old version of kikit, but upgrading the image from 0.7 to 1.x seems to do away with the pcbdraw command, so I'm at a loss for what to do. I see that the Github action passed pretty recently so I assume this is something about my environment. Any help would be appreciated!