-
Notifications
You must be signed in to change notification settings - Fork 0
135 lines (130 loc) · 3.73 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# SPDX-FileCopyrightText: 2022 nerdyscout <https://github.com/nerdyscout/>
#
# SPDX-License-Identifier: CC0-1.0
name: KiBot
on:
workflow_dispatch:
push:
paths:
- "hardware/*.kicad_sch"
- "hardware/*.kicad_pcb"
- "hardware/*.kicad_pro"
- "**/*kibot.yml"
pull_request:
paths:
- "hardware/*.kicad_sch"
- "hardware/*.kicad_pcb"
- "hardware/*.kicad_pro"
- "**/*kibot.yml"
env:
schema: "eps-re_project.kicad_sch"
board: "*.kicad_pcb"
dir: .
config: ../kibot.yml
defaults:
run:
working-directory: ./hardware
jobs:
# checks
ERC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki7
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c ${{env.config}} -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_drc -v -i
DRC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki7
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c ${{env.config}} -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:ki7
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c ${{env.config}} -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: |
hardware/docs/**
!hardware/**/*.ogv
!hardware/**/*.log
# fabrications
gerbers:
runs-on: ubuntu-latest
needs: [DRC]
container:
image: setsoft/kicad_auto:ki7
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c ${{env.config}} -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: |
hardware/gerbers/**
!hardware/**/*.ogv
!hardware/**/*.log
# cad
cad:
runs-on: ubuntu-latest
needs: [DRC]
container:
image: setsoft/kicad_auto:ki7
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c ${{env.config}} -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: |
hardware/cad/**
!hardware/**/*.ogv
!hardware/**/*.log
# images
# render:
# runs-on: ubuntu-latest
# needs: [DRC]
# container:
# image: setsoft/kicad_auto:ki7
# steps:
# - uses: actions/checkout@v3
# - name: run kibot
# run: |
# kibot -c ${{env.config}} -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: |
# hardware/img/**
# !hardware/**/*.ogv
# !hardware/**/*.log