fix: design rules (positioning) in schematic #35
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
name: pull-request-builds | |
on: | |
pull_request: | |
branches: [ pslab-v6 ] | |
paths: | |
- '**.sch' | |
- '**.kicad_pcb' | |
- '**.kicad_mod' | |
- '**.lib' | |
- '**.pro' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download project files | |
uses: actions/checkout@v4 | |
- name: Install KiCAD | |
run: | | |
sudo add-apt-repository --yes ppa:kicad/kicad-7.0-releases | |
sudo apt update | |
sudo apt install --install-recommends kicad -y -qq | |
- name: Copy configuration files | |
run: | | |
cd ~/.config | |
mkdir kicad | |
cd kicad | |
wget https://gist.githubusercontent.com/CloudyPadmal/dad9975e02bf39d6a3d2851ca53981cc/raw/0f342a3bba82b1af9789be689e5c00b4ad914015/kicad_common | |
- name: Install kibot | |
run: | | |
wget https://set-soft.github.io/debian/kibot.list | |
sudo cp kibot.list /etc/apt/sources.list.d/ | |
wget https://set-soft.github.io/debian/kibot.gpg | |
sudo cp kibot.gpg /etc/apt/ | |
sudo apt-get update | |
sudo apt install kibot kidiff | |
- name: Install dependencies | |
run: | | |
pip install pcb-tools image cloudinary | |
sudo apt install xvfb recordmydesktop xdotool libmagickwand-dev librsvg2-bin imagemagick poppler-utils | |
- name: Run build | |
run: | | |
cd schematics | |
kibot -v | |
- name: Publish PDF schematic | |
uses: actions/upload-artifact@v3 | |
with: | |
name: schematic-pdf | |
path: docs/schematics/PSLab.pdf | |
- name: Publish interactive bill of materials | |
uses: actions/upload-artifact@v3 | |
with: | |
name: interactive-bom | |
path: docs/components/InteractiveBoM.html | |
- name: Publish bill of materials | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bill-of-materials | |
path: docs/components/BillOfMaterials.csv | |
- name: Publish gerbers | |
uses: actions/upload-artifact@v3 | |
with: | |
name: gerbers | |
path: output/Gerber/ | |
- name: Publish centroids | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pick-and-place | |
path: docs/position_files/PositionFile.csv | |
- name: Electric Rule Check | |
uses: actions/upload-artifact@v3 | |
with: | |
name: electric-rule-check | |
path: schematics/PSLab-erc.txt | |
- name: Design Rule Check | |
uses: actions/upload-artifact@v3 | |
with: | |
name: design-rule-check | |
path: schematics/PSLab-drc.txt | |
- name: Difference | |
uses: actions/upload-artifact@v3 | |
with: | |
name: difference | |
path: docs/components/PSLab-diff_pcb.pdf |