File tree 7 files changed +51932
-43882
lines changed
7 files changed +51932
-43882
lines changed Original file line number Diff line number Diff line change 1
1
name : Build distributable and production files
2
2
3
3
env :
4
- PROJECT_NAME : entree
5
4
MAKE_DEFAULT : false
6
5
MAKE_PDF : true
7
6
MAKE_PROD : false
25
24
- ${{ github.workspace }}:/project
26
25
27
26
steps :
28
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
29
28
30
29
- name : Prepare
31
30
# https://github.com/actions/runner/issues/2033
Original file line number Diff line number Diff line change @@ -29,17 +29,23 @@ jobs:
29
29
- ${{ github.workspace }}:/project
30
30
31
31
steps :
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
34
34
- name : Prepare
35
35
# https://github.com/actions/runner/issues/2033
36
36
run : git config --global --add safe.directory "$GITHUB_WORKSPACE"
37
37
38
+ - name : Check rules
39
+ run : make rules
40
+
38
41
- name : Run make pdf
39
42
run : make pdf
40
43
41
44
- name : Upload outputs
42
45
uses : actions/upload-artifact@v3
43
46
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
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ KICADMK_APPEND_GIT ?= 1
14
14
# Define and set to 1 to print the log content at start to shell
15
15
# KICADMK_PRINT_LOG = 0
16
16
PCB_PDF_FLAGS = --ibt
17
+ SCH_ERC_FLAGS = --severity-error
18
+ PCB_DRC_FLAGS = --severity-error
17
19
18
20
# Define a command that generates a BoM - kibom installed with pip by default but could be path to Python script
19
21
BOM_CMD ?= kibom
You can’t perform that action at this time.
0 commit comments