File tree Expand file tree Collapse file tree 1 file changed +5
-36
lines changed Expand file tree Collapse file tree 1 file changed +5
-36
lines changed Original file line number Diff line number Diff line change 22
22
23
23
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
24
24
jobs :
25
- get_submodules :
26
- runs-on : ubuntu-latest
27
-
28
- steps :
29
- - uses : actions/checkout@v4
30
- with :
31
- submodules : ' true'
32
-
33
- - name : Store submodule
34
- uses : actions/upload-artifact@v4
35
- with :
36
- name : Submodule
37
- path : test_subdir/lib
38
-
39
-
40
25
ERC :
41
26
runs-on : ubuntu-latest
42
27
container : ghcr.io/inti-cmnb/kicad8_auto:latest
43
- needs : get_submodules
44
28
45
29
steps :
46
30
- uses : actions/checkout@v4
47
-
48
- - name : Get submodule
49
- uses : actions/download-artifact@v4
50
31
with :
51
- name : Submodule
52
- path : test_subdir/lib
32
+ submodules : ' true'
53
33
54
34
- name : Run ERC
55
35
run : |
36
+ ls -la test_subdir/
56
37
make -C test_subdir/ erc
57
38
58
39
- name : Retrieve results
68
49
69
50
steps :
70
51
- uses : actions/checkout@v4
71
-
72
- - name : Get submodule
73
- uses : actions/download-artifact@v4
74
52
with :
75
- name : Submodule
76
- path : test_subdir/lib
53
+ submodules : ' true'
77
54
78
55
- name : Run DRC
79
56
run : |
93
70
94
71
steps :
95
72
- uses : actions/checkout@v4
96
-
97
- - name : Get submodule
98
- uses : actions/download-artifact@v4
99
73
with :
100
- name : Submodule
101
- path : test_subdir/lib
74
+ submodules : ' true'
102
75
103
76
- name : Run schematic stuff
104
77
run : |
@@ -118,12 +91,8 @@ jobs:
118
91
119
92
steps :
120
93
- uses : actions/checkout@v4
121
-
122
- - name : Get submodule
123
- uses : actions/download-artifact@v4
124
94
with :
125
- name : Submodule
126
- path : test_subdir/lib
95
+ submodules : ' true'
127
96
128
97
- name : Run PCB stuff
129
98
run : |
You can’t perform that action at this time.
0 commit comments