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
+ rindows : # {{{
188
191
runs-on : windows-latest
189
192
if : true
190
193
@@ -251,3 +254,21 @@ jobs:
251
254
with :
252
255
name : windows-${{matrix.pyver}}-${{matrix.arch}}
253
256
path : ./wheelhouse/*.whl
257
+
258
+ # }}}
259
+
260
+ merge : # {{{
261
+ runs-on : ubuntu-latest
262
+ needs :
263
+ - sdist
264
+ - linux
265
+ - macos
266
+ - windows
267
+ steps :
268
+ - name : Merge Artifacts
269
+ uses : actions/upload-artifact/merge@v4
270
+ with :
271
+ name : psycopg2-binary-artifact
272
+ delete-merged : true
273
+
274
+ # }}}
You can’t perform that action at this time.
0 commit comments