Skip to content

Commit

Permalink
updates for KiCad 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tuna-f1sh committed Feb 26, 2024
1 parent 4764b61 commit 04c1af3
Show file tree
Hide file tree
Showing 7 changed files with 51,932 additions and 43,882 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Build distributable and production files

env:
PROJECT_NAME: entree
MAKE_DEFAULT: false
MAKE_PDF: true
MAKE_PROD: false
Expand All @@ -25,7 +24,7 @@ jobs:
- ${{ github.workspace }}:/project

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare
# https://github.com/actions/runner/issues/2033
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,23 @@ jobs:
- ${{ github.workspace }}:/project

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare
# https://github.com/actions/runner/issues/2033
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

- name: Check rules
run: make rules

- name: Run make pdf
run: make pdf

- name: Upload outputs
uses: actions/upload-artifact@v3
with:
name: ${{ env.PROJECT_NAME }}-review-pdf
path: output/*.pdf
name: ${{ env.PROJECT_NAME }}-review
path:
output/*.pdf
output/sch/*.rpt
output/pcb/*.rpt
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ KICADMK_APPEND_GIT ?= 1
# Define and set to 1 to print the log content at start to shell
# KICADMK_PRINT_LOG = 0
PCB_PDF_FLAGS = --ibt
SCH_ERC_FLAGS = --severity-error
PCB_DRC_FLAGS = --severity-error

# Define a command that generates a BoM - kibom installed with pip by default but could be path to Python script
BOM_CMD ?= kibom
Expand Down
Loading

0 comments on commit 04c1af3

Please sign in to comment.