hardware: Improving the readability of symbols and making minor chang… #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |