Skip to content

Removed diode and a resistor - fixes DCDC SHDN pin. #40

Removed diode and a resistor - fixes DCDC SHDN pin.

Removed diode and a resistor - fixes DCDC SHDN pin. #40

Workflow file for this run

# SPDX-FileCopyrightText: 2022 nerdyscout <https://github.com/nerdyscout/>
#
# SPDX-License-Identifier: CC0-1.0
name: KiBot
on:
workflow_dispatch:
push:
paths:
- "PCB/*.kicad_sch"
- "PCB/*.kicad_pcb"
- "PCB/*.kicad_pro"
- "**/*kibot.yml"
pull_request:
paths:
- "PCB/*.kicad_sch"
- "PCB/*.kicad_pcb"
- "PCB/*.kicad_pro"
- "**/*kibot.yml"
env:
schema: "PCB/StepperServoCAN.kicad_sch"
board: "PCB/StepperServoCAN.kicad_pcb"
dir: .
jobs:
# checks
ERC:
runs-on: ubuntu-latest
container:
image: ghcr.io/inti-cmnb/kicad7_auto:latest
steps:
- uses: actions/checkout@v3
- 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:latest
steps:
- uses: actions/checkout@v3
- 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:latest
steps:
- uses: actions/checkout@v3
- 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/[email protected]
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:latest
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -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/[email protected]
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_gerbers
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:latest
steps:
- uses: actions/checkout@v3
- 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/[email protected]
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_cad
if-no-files-found: error
path: |
${{env.dir}}/cad/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log
# images
render:
runs-on: ubuntu-latest
needs: [DRC]
container:
image: ghcr.io/inti-cmnb/kicad7_auto:latest
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v \
'hasl green svg top' 'hasl green svg bottom'
- uses: actions/[email protected]
if: ${{success()}}
with:
name: ${{github.event.repository.name}}_img
if-no-files-found: error
path: |
${{env.dir}}/img/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log