File tree 1 file changed +25
-4
lines changed
1 file changed +25
-4
lines changed Original file line number Diff line number Diff line change 7
7
PIP_BREAK_SYSTEM_PACKAGES : " 1"
8
8
9
9
jobs :
10
- build- sdist :
10
+ sdist : # {{{
11
11
if : true
12
12
strategy :
13
13
fail-fast : false
54
54
--health-timeout 5s
55
55
--health-retries 5
56
56
57
+ # }}}
57
58
58
- build- linux :
59
+ linux : # {{{
59
60
if : true
60
61
61
62
env :
@@ -130,8 +131,9 @@ jobs:
130
131
--health-timeout 5s
131
132
--health-retries 5
132
133
134
+ # }}}
133
135
134
- build- macos :
136
+ macos : # {{{
135
137
runs-on : macos-${{ matrix.macver }}
136
138
if : true
137
139
@@ -183,8 +185,9 @@ jobs:
183
185
name : macos-${{matrix.pyver}}-macos-${{matrix.macver}}_${{matrix.arch}}
184
186
path : ./wheelhouse/*.whl
185
187
188
+ # }}}
186
189
187
- build- windows :
190
+ windows : # {{{
188
191
runs-on : windows-latest
189
192
if : true
190
193
@@ -254,3 +257,21 @@ jobs:
254
257
with :
255
258
name : windows-${{ matrix.package_name }}-${{matrix.pyver}}-${{matrix.arch}}
256
259
path : ./wheelhouse/*.whl
260
+
261
+ # }}}
262
+
263
+ merge : # {{{
264
+ runs-on : ubuntu-latest
265
+ needs :
266
+ - sdist
267
+ - linux
268
+ - macos
269
+ - windows
270
+ steps :
271
+ - name : Merge Artifacts
272
+ uses : actions/upload-artifact/merge@v4
273
+ with :
274
+ name : psycopg2-binary-artifact
275
+ delete-merged : true
276
+
277
+ # }}}
You can’t perform that action at this time.
0 commit comments