Skip to content

Commit 6510a1d

Browse files
committed
updates for KiCad 8.0
1 parent 4764b61 commit 6510a1d

File tree

7 files changed

+51932
-43882
lines changed

7 files changed

+51932
-43882
lines changed

.github/workflows/build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Build distributable and production files
22

33
env:
4-
PROJECT_NAME: entree
54
MAKE_DEFAULT: false
65
MAKE_PDF: true
76
MAKE_PROD: false
@@ -25,7 +24,7 @@ jobs:
2524
- ${{ github.workspace }}:/project
2625

2726
steps:
28-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2928

3029
- name: Prepare
3130
# https://github.com/actions/runner/issues/2033

.github/workflows/review.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,23 @@ jobs:
2929
- ${{ github.workspace }}:/project
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333

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

38+
- name: Check rules
39+
run: make rules
40+
3841
- name: Run make pdf
3942
run: make pdf
4043

4144
- name: Upload outputs
4245
uses: actions/upload-artifact@v3
4346
with:
44-
name: ${{ env.PROJECT_NAME }}-review-pdf
45-
path: output/*.pdf
47+
name: ${{ env.PROJECT_NAME }}-review
48+
path: |
49+
output/*.pdf
50+
output/sch/*.rpt
51+
output/pcb/*.rpt

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ KICADMK_APPEND_GIT ?= 1
1414
# Define and set to 1 to print the log content at start to shell
1515
# KICADMK_PRINT_LOG = 0
1616
PCB_PDF_FLAGS = --ibt
17+
SCH_ERC_FLAGS = --severity-error
18+
PCB_DRC_FLAGS = --severity-error
1719

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

0 commit comments

Comments
 (0)