Back to the old fashioned way #9
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: | |
- "kicad_project/*.kicad_sch" | |
- "kicad_project/*.kicad_pcb" | |
- "kicad_project/*.kicad_pro" | |
- "**/*kibot.yml" | |
env: | |
schema: "mbed-ce-ci-shield-v2.kicad_sch" | |
board: "mbed-ce-ci-shield-v2.kicad_pcb" | |
project_dir: kicad_project | |
out_dir: out | |
jobs: | |
compile-and-gen-design-files: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/inti-cmnb/kicad7_auto:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install pcbdraw | |
run: | | |
git clone https://github.com/yaqwsx/PcbDraw.git | |
cd PcbDraw | |
python3 setup.py install | |
- name: run kibot | |
run: | | |
cd ${{env.project_dir}} | |
mkdir ${{env.out_dir}} | |
kibot -c kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.out_dir}} -v | |
- uses: actions/upload-artifact@v3 | |
if: ${{success()}} | |
with: | |
name: ${{github.event.repository.name}}_design_files | |
if-no-files-found: error | |
path: | | |
${{env.out_dir}}/** | |
!${{env.dir}}/**/*.ogv | |
!${{env.dir}}/**/*.log |