@@ -128,8 +128,9 @@ jobs:
128
128
- name : Save wheel
129
129
uses : actions/upload-artifact@v4
130
130
with :
131
- name : slycot-wheels
131
+ name : slycot-wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.bla_vendor }}
132
132
path : slycot-wheels
133
+ retention-days : 5
133
134
134
135
build-conda :
135
136
name : Build conda, ${{ matrix.os }}
@@ -178,8 +179,9 @@ jobs:
178
179
- name : Save to local conda pkg channel
179
180
uses : actions/upload-artifact@v4
180
181
with :
181
- name : slycot-conda-pkgs
182
+ name : slycot-conda-pkgs-${{ matrix.os }}-${{ matrix.python }}
182
183
path : slycot-conda-pkgs
184
+ retention-days : 5
183
185
184
186
create-wheel-test-matrix :
185
187
name : Create wheel test matrix
@@ -189,6 +191,11 @@ jobs:
189
191
outputs :
190
192
matrix : ${{ steps.set-matrix.outputs.matrix }}
191
193
steps :
194
+ - name : Merge artifacts
195
+ uses : actions/upload-artifact/merge@v4
196
+ with :
197
+ name : slycot-wheels
198
+ pattern : slycot-wheels-*
192
199
- name : Checkout Slycot
193
200
uses : actions/checkout@v3
194
201
- name : Download wheels (if any)
@@ -207,6 +214,11 @@ jobs:
207
214
outputs :
208
215
matrix : ${{ steps.set-matrix.outputs.matrix }}
209
216
steps :
217
+ - name : Merge artifacts
218
+ uses : actions/upload-artifact/merge@v4
219
+ with :
220
+ name : slycot-conda-pkgs
221
+ pattern : slycot-conda-pkgs-*
210
222
- name : Checkout Slycot
211
223
uses : actions/checkout@v3
212
224
- name : Download conda packages
0 commit comments