-
Notifications
You must be signed in to change notification settings - Fork 0
187 lines (151 loc) · 4.86 KB
/
hardware_workflow.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
name: Button Hardware
on:
push:
branches:
- "main"
tags:
- "*"
pull_request:
paths:
- "Hardware/**"
# - ".github/**"
jobs:
KiCad_Hardware:
runs-on: ubuntu-latest
name: SuperButton Hardware
strategy:
matrix:
variant:
- SuperButtonX1
- SuperButtonX3
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: INTI-CMNB/KiBot@v2_k7
with:
# Config file
config: Hardware/${{ matrix.variant }}.yaml
# Prefix for output in config file.
dir: _hardwareOutput
# Hardware Files
schema: "Hardware/${{ matrix.variant }}/${{ matrix.variant }}.kicad_sch"
board: "Hardware/${{ matrix.variant }}/${{ matrix.variant }}.kicad_pcb"
- name: upload results
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.variant }}
path: _hardwareOutput
- name: Discord notification if failed
if: ${{ failure() }}
uses: appleboy/discord-action@master
with:
webhook_id: ${{ secrets.WEBHOOK_ID }}
webhook_token: ${{ secrets.WEBHOOK_TOKEN }}
args: "Building new board failed, most likely a DRC check."
# make_docs:
# runs-on: ubuntu-latest
# name: Build Docs
# needs: [KiCad_Hardware]
# steps:
# - name: Setup Python
# uses: actions/setup-python@v2
# with:
# python-version: "3.10"
# architecture: x64
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - run: sudo apt update
# - run: sudo apt install texlive-latex-recommended texlive-latex-extra texlive-pictures pandoc rename latexmk inkscape imagemagick
# - name: Install requirements
# run: pip install -r Docs/requirements.txt
# # Download artifacts from other builds
# - uses: actions/download-artifact@v3
# with:
# name: Board-Hardware
# path: _hardwareOutput
# # Convert svg graphics
# - run: convert -density 300 _hardwareOutput/LC-Mainboard-schematic.svg _hardwareOutput/LC-Mainboard-schematic.png
# - run: cd Docs && make latexpdf
# - run: mv Docs/_build/latex/*.pdf Docs/_build/latex/Board-Manual.pdf
# - uses: actions/upload-artifact@v3
# with:
# name: Board-Manual
# path: Docs/_build/latex/Board-Manual.pdf
dev-publish:
# publish only to devs
runs-on: ubuntu-latest
name: Dev-Publish
# needs: [make_docs, KiCad_Hardware]
needs: [KiCad_Hardware]
strategy:
matrix:
variant:
- SuperButtonX1
- SuperButtonX3
steps:
# Download artifacts
# - uses: actions/download-artifact@v3
# with:
# name: Board-Manual
- uses: actions/download-artifact@v3
with:
name: ${{ matrix.variant }}
# - name: send custom message with args
# uses: appleboy/discord-action@master
# with:
# webhook_id: ${{ secrets.WEBHOOK_ID }}
# webhook_token: ${{ secrets.WEBHOOK_TOKEN }}
# file: "Board-Manual.pdf"
# args: Display Board Just got an update!
- name: send custom message with args
uses: appleboy/discord-action@master
with:
webhook_id: ${{ secrets.WEBHOOK_ID }}
webhook_token: ${{ secrets.WEBHOOK_TOKEN }}
file: "${{ matrix.variant }}-3D_top.png"
args: ${{ matrix.variant }}
publish:
# Only run on tags
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
name: Publish
# needs: [make_docs, KiCad_Hardware]
needs: [KiCad_Hardware]
strategy:
matrix:
variant:
- SuperButtonX1
- SuperButtonX3
steps:
# Be in our repo
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Download artifacts
# - uses: actions/download-artifact@v3
# with:
# name: Board-Manual
- uses: actions/download-artifact@v3
with:
name: ${{ matrix.variant }}
- run: mkdir -p _staging/
# - run: cp *.pdf _staging/
- run: cp *.step _staging/
# Copy gerbers
- run: cp PCBWay/*.zip _staging/${{ matrix.variant }}-$(git rev-parse --short HEAD)-PCBWay.zip
- run: cp JLCPCB/*.zip _staging/${{ matrix.variant }}-$(git rev-parse --short HEAD)-JLCPCB.zip
# Copy BOMs
- run: cp *.csv _staging/
- name: Upload Docs to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "_staging/*"
tag: ${{ github.ref }}
overwrite: true
prerelease: true
body: "Concord Robotics, Automated with github ci/cd."
file_glob: true