File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 23
23
sudo apt install --install-recommends kicad
24
24
25
25
- name : Run DRC
26
+ continue-on-error : true
26
27
run : |
27
28
kicad-cli pcb drc --output=drc.rpt --exit-code-violations tuxkeychain.kicad_pcb
28
29
status=$?
52
53
sudo apt install --install-recommends kicad
53
54
54
55
- name : Run ERC
56
+ continue-on-error : true
55
57
run : |
56
- kicad-cli sch erc --output=erc.rpt --exit-code-violations tuxkeychain.kicad_pcb
58
+ kicad-cli sch erc --output=erc.rpt --exit-code-violations tuxkeychain.kicad_sch
57
59
status=$?
58
60
if [ $status -ne 0 ]; then
59
61
echo "ERC failed with exit code $status"
82
84
83
85
- name : Generate PDFs
84
86
run : |
85
- kicad-cli pcb export pdf --output-file =pcb.pdf tuxkeychain.kicad_pcb
86
- kicad-cli sch export pdf --output-file =schematic.pdf tuxkeychain.kicad_pcb
87
+ kicad-cli pcb export pdf --output=pcb.pdf tuxkeychain.kicad_pcb
88
+ kicad-cli sch export pdf --output=schematic.pdf tuxkeychain.kicad_sch
87
89
88
90
- name : Upload PDFs
89
91
uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments