Friendship ended with FT232H, now CY7C652xx is my friend #21
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: 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.project_dir}}/${{env.out_dir}}/** | |
!${{env.project_dir}}/${{env.out_dir}}/**/*.ogv | |
!${{env.project_dir}}/${{env.out_dir}}/**/*.log |