-
Notifications
You must be signed in to change notification settings - Fork 0
124 lines (119 loc) · 3.51 KB
/
Copy pathkibot.yml
File metadata and controls
124 lines (119 loc) · 3.51 KB
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
# SPDX-FileCopyrightText: 2022 nerdyscout <https://github.com/nerdyscout/>
#
# SPDX-License-Identifier: CC0-1.0
name: KiBot
on:
workflow_dispatch:
push:
paths:
- "*.kicad_sch"
- "*.kicad_pcb"
- "*.kicad_pro"
- "**/*kibot.yml"
env:
schema: "pcb.kicad_sch"
board: "pcb.kicad_pcb"
dir: .
jobs:
# checks
ERC:
runs-on: ubuntu-latest
container:
image: ghcr.io/inti-cmnb/kicad7_auto:1.6.1
steps:
- uses: actions/checkout@v2
- 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: ghcr.io/inti-cmnb/kicad7_auto:1.6.1
steps:
- uses: actions/checkout@v2
- 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: ghcr.io/inti-cmnb/kicad7_auto:1.6.1
steps:
- uses: actions/checkout@v2
- 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@v2
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: ghcr.io/inti-cmnb/kicad7_auto:1.6.1
steps:
- uses: actions/checkout@v2
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v \
gerbers_jlcpcb.gbr JLCPCB_drill
- uses: actions/upload-artifact@v2
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_gerbers
if-no-files-found: error
path: |
${{env.dir}}/gerbers/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log# fabrications
bom:
runs-on: ubuntu-latest
needs: [DRC]
container:
image: ghcr.io/inti-cmnb/kicad7_auto:1.6.1
steps:
- uses: actions/checkout@v2
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v \
JLCPCB_bom 'https://jlcpcb.com/'
- uses: actions/upload-artifact@v2
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_bom
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: ghcr.io/inti-cmnb/kicad7_auto:1.6.1
steps:
- uses: actions/checkout@v2
- 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@v2
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_cad
if-no-files-found: error
path: |
${{env.dir}}/cad/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log