Skip to content

Commit b91b97e

Browse files
committed
GHA: repair the Windows runtime/SDK packaging
We now need to download the standard library and the SDK to get the same content that we used to previously have in just the SDK. Adjust that accordingly.
1 parent 8c02c26 commit b91b97e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/swift-toolchain.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3026,7 +3026,7 @@ jobs:
30263026
${{ github.workspace }}/BinaryCache/installer/Release/${{ matrix.arch }}/ide.msi
30273027
${{ github.workspace }}/BinaryCache/installer/Release/${{ matrix.arch }}/ide.cab
30283028
3029-
package_sdk_runtime:
3029+
package_windows_sdk_runtime:
30303030
name: Package Windows SDK & Runtime
30313031
needs: [stdlib, sdk]
30323032
runs-on: ${{ inputs.default_build_runner }}
@@ -3043,6 +3043,10 @@ jobs:
30433043
platform: x86
30443044

30453045
steps:
3046+
- uses: actions/download-artifact@v4
3047+
with:
3048+
name: Windows-stdlib-${{ matrix.arch }}
3049+
path: ${{ github.workspace }}/BuildRoot/Library/Developer/Platforms/Windows.platform
30463050
- uses: actions/download-artifact@v4
30473051
with:
30483052
name: Windows-sdk-${{ matrix.arch }}
@@ -3126,7 +3130,7 @@ jobs:
31263130
${{ github.workspace }}/BinaryCache/installer/Release/${{ matrix.arch }}/rtl.${{ matrix.arch }}.msm
31273131
${{ github.workspace }}/BinaryCache/installer/Release/${{ matrix.arch }}/rtl.${{ matrix.arch }}.cab
31283132
3129-
package_android_sdk:
3133+
package_android_sdk_runtime:
31303134
name: Package Android SDK & Runtime
31313135
needs: [stdlib, sdk]
31323136
runs-on: ${{ inputs.default_build_runner }}
@@ -3202,7 +3206,7 @@ jobs:
32023206
${{ github.workspace }}/BinaryCache/installer/Release/${{ matrix.cpu }}/android_sdk.${{ matrix.cpu }}.cab
32033207
32043208
installer:
3205-
needs: [package_tools, package_sdk_runtime, package_android_sdk]
3209+
needs: [package_tools, package_windows_sdk_runtime, package_android_sdk_runtime]
32063210
runs-on: ${{ inputs.default_build_runner }}
32073211

32083212
strategy:

0 commit comments

Comments
 (0)