Skip to content

Commit

Permalink
fixup! kicad-cli in docker doesn't work for ERC/DRC
Browse files Browse the repository at this point in the history
  • Loading branch information
jclds139 committed Nov 22, 2024
1 parent ca34313 commit 3f52933
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,29 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
#jobs:
erc:
name: "Electrical Rules Check"
runs-on: ubuntu-latest
container: docker.io/yaqwsx/kikit:nightly-v8
steps:
- uses: actions/checkout@v4

- run: kicad-cli sch erc --severity-error --severity-warning --exit-code-violations GeoMCU.kicad_sch
name: Run ERC on Schematic
# erc:
# name: "Electrical Rules Check"
# runs-on: ubuntu-latest
# container: docker.io/yaqwsx/kikit:nightly-v8
# steps:
# - uses: actions/checkout@v4
#
# - run: kicad-cli sch erc --severity-error --severity-warning --exit-code-violations GeoMCU.kicad_sch
# name: Run ERC on Schematic
# Breaks because kicad-cli needs to be pre-prepped...
drc:
name: "Design Rules Check"
runs-on: ubuntu-latest
container: docker.io/yaqwsx/kikit:nightly-v8
steps:
- uses: actions/checkout@v4

- run: kicad-cli pcb drc --schematic-parity --severity-error --severity-warning --exit-code-violations GeoMCU.kicad_pcb
- run: kikit drc run GeoMCU.kicad_pcb
name: Run DRC on Board
docs:
name: "PDF Exports"
runs-on: ubuntu-latest
container: docker.io/kicad/kicad
container: docker.io/yaqwsx/kikit:nightly-v8
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 3f52933

Please sign in to comment.