@@ -132,7 +132,7 @@ jobs:
132
132
signed : ${{ steps.context.outputs.signed }}
133
133
swift_version : ${{ steps.context.outputs.swift_version }}
134
134
swift_tag : ${{ steps.context.outputs.swift_tag }}
135
- windows_build_runner : ${{ steps.context.outputs.windows_build_runner }}
135
+ default_build_runner : ${{ steps.context.outputs.windows_build_runner }}
136
136
compilers_build_runner : ${{ steps.context.outputs.compilers_build_runner }}
137
137
steps :
138
138
- id : context
@@ -255,7 +255,7 @@ jobs:
255
255
256
256
sqlite :
257
257
needs : [context]
258
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
258
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
259
259
260
260
strategy :
261
261
fail-fast : false
@@ -331,7 +331,7 @@ jobs:
331
331
332
332
cmark_gfm :
333
333
needs : [context]
334
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
334
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
335
335
336
336
strategy :
337
337
fail-fast : false
@@ -387,7 +387,7 @@ jobs:
387
387
388
388
build_tools :
389
389
needs : [context, cmark_gfm]
390
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
390
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
391
391
392
392
steps :
393
393
- uses : actions/download-artifact@v4
@@ -746,7 +746,7 @@ jobs:
746
746
747
747
zlib :
748
748
needs : [context]
749
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
749
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
750
750
751
751
strategy :
752
752
fail-fast : false
@@ -869,7 +869,7 @@ jobs:
869
869
870
870
curl :
871
871
needs : [context, zlib]
872
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
872
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
873
873
874
874
strategy :
875
875
fail-fast : false
@@ -1074,7 +1074,7 @@ jobs:
1074
1074
1075
1075
libxml2 :
1076
1076
needs : [context]
1077
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
1077
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
1078
1078
1079
1079
strategy :
1080
1080
fail-fast : false
@@ -1203,7 +1203,7 @@ jobs:
1203
1203
1204
1204
stdlib :
1205
1205
needs : [context, compilers, cmark_gfm]
1206
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
1206
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
1207
1207
1208
1208
strategy :
1209
1209
fail-fast : false
@@ -1489,7 +1489,7 @@ jobs:
1489
1489
1490
1490
macros :
1491
1491
needs : [context, compilers, cmark_gfm, stdlib]
1492
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
1492
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
1493
1493
1494
1494
strategy :
1495
1495
fail-fast : false
@@ -1626,7 +1626,7 @@ jobs:
1626
1626
sdk :
1627
1627
continue-on-error : ${{ matrix.arch != 'amd64' }}
1628
1628
needs : [context, libxml2, curl, zlib, compilers, cmark_gfm, stdlib, macros]
1629
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
1629
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
1630
1630
1631
1631
strategy :
1632
1632
fail-fast : false
@@ -2045,7 +2045,7 @@ jobs:
2045
2045
2046
2046
devtools :
2047
2047
needs : [context, sqlite, compilers, stdlib, sdk]
2048
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
2048
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
2049
2049
2050
2050
strategy :
2051
2051
fail-fast : false
@@ -2746,7 +2746,7 @@ jobs:
2746
2746
debugging_tools :
2747
2747
name : Debugging Tools
2748
2748
needs : [context, compilers, devtools, stdlib, sdk]
2749
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
2749
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
2750
2750
2751
2751
strategy :
2752
2752
fail-fast : false
@@ -2888,7 +2888,7 @@ jobs:
2888
2888
package_tools :
2889
2889
name : Package Tools
2890
2890
needs : [context, compilers, macros, debugging_tools, devtools]
2891
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
2891
+ runs-on : ${{ needs.context.outputs.main_build_runner }}
2892
2892
2893
2893
strategy :
2894
2894
fail-fast : false
@@ -3048,7 +3048,7 @@ jobs:
3048
3048
package_sdk_runtime :
3049
3049
name : Package Windows SDK & Runtime
3050
3050
needs : [context, stdlib, sdk]
3051
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
3051
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
3052
3052
3053
3053
strategy :
3054
3054
fail-fast : false
@@ -3148,7 +3148,7 @@ jobs:
3148
3148
package_android_sdk :
3149
3149
name : Package Android SDK & Runtime
3150
3150
needs : [context, stdlib, sdk]
3151
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
3151
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
3152
3152
3153
3153
strategy :
3154
3154
fail-fast : false
@@ -3222,7 +3222,7 @@ jobs:
3222
3222
3223
3223
installer :
3224
3224
needs : [context, package_tools, package_sdk_runtime, package_android_sdk]
3225
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
3225
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
3226
3226
3227
3227
strategy :
3228
3228
fail-fast : false
@@ -3356,7 +3356,7 @@ jobs:
3356
3356
3357
3357
smoke_test :
3358
3358
needs : [context, installer]
3359
- runs-on : ${{ needs.context.outputs.windows_build_runner }}
3359
+ runs-on : ${{ needs.context.outputs.default_build_runner }}
3360
3360
3361
3361
steps :
3362
3362
- uses : actions/download-artifact@v4
0 commit comments