-
Notifications
You must be signed in to change notification settings - Fork 2
117 lines (114 loc) · 3.33 KB
/
kibot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: KiBot
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
schema: "hardware/*.kicad_sch"
board: "hardware/*.kicad_pcb"
dir: .
jobs:
# checks
ERC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_drc -v -i
DRC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc -v -i
# documentation
docs:
runs-on: ubuntu-latest
needs: [ERC]
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v \
ibom.html octopart.csv schematic.pdf schematic.svg board_top.pdf board_bottom.pdf
- uses: actions/upload-artifact@v3.1.1
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_docs
if-no-files-found: error
path: |
${{env.dir}}/docs/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log
# fabrications
gerbers:
runs-on: ubuntu-latest
needs: [DRC]
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v \
gerbers.gbr drills.gbr drills.drl pickandplace.csv bom.csv
- uses: actions/upload-artifact@v3.1.1
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_gerbers
if-no-files-found: error
path: |
${{env.dir}}/gerbers/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log
# cad
cad:
runs-on: ubuntu-latest
needs: [DRC]
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v \
model.step openboardview.brd autocad.dxf
- uses: actions/upload-artifact@v3.1.1
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_cad
if-no-files-found: error
path: |
${{env.dir}}/cad/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log
# images
render:
runs-on: ubuntu-latest
needs: [DRC]
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v \
board_black_top.svg board_black_bottom.svg
- uses: actions/upload-artifact@v3.1.1
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_img
if-no-files-found: error
path: |
${{env.dir}}/img/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log