-
Notifications
You must be signed in to change notification settings - Fork 0
144 lines (119 loc) · 3.63 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
name: KiCAD
on:
push:
branches:
- "main"
tags:
- "*"
pull_request:
paths:
- "Hardware/**"
jobs:
KiCad_Hardware:
runs-on: ubuntu-latest
name: Fennec Modem Card Hardware
strategy:
matrix:
variant:
- FennecModem
- BackPlane
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."
dev-publish:
# publish only to devs
runs-on: ubuntu-latest
name: Dev-Publish
# needs: [make_docs, KiCad_Hardware]
needs: [KiCad_Hardware]
strategy:
matrix:
variant:
- FennecModem
- BackPlane
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:
- Buisness Card
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: "Kitsune Robotics, Automated with github ci/cd."
file_glob: true