Skip to content

Commit 0af4dd3

Browse files
authored
Merge pull request swiftlang#42188 from apple/compnerd/toolchain-staging
Update build-windows-toolchain.bat
2 parents d78d1eb + ee794d8 commit 0af4dd3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

utils/build-windows-toolchain.bat

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -693,11 +693,14 @@ msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\installer.wixproj
693693

694694
:: Stage Artifacts
695695
md %BuildRoot%\artifacts
696-
:: FIXME(compnerd) should we provide SDKs as standalone artifact?
697-
move %PackageRoot%\sdk.msi %BuildRoot%\artifacts || (exit /b)
696+
:: ICU Dependency for runtime libraries
697+
move %PackageRoot%\icu.msi %BuildRoot%\artifacts || (exit /b)
698698
:: Redistributable libraries for developers
699699
move %PackageRoot%\runtime.msi %BuildRoot%\artifacts || (exit /b)
700-
move %PackageRoot%\icu.msi %BuildRoot%\artifacts || (exit /b)
700+
:: Toolchain
701+
move %PackageRoot%\toolchain.msi %BuildRoot%\artifacts || (exit /b)
702+
:: SDK
703+
move %PackageRoot%\sdk.msi %BuildRoot%\artifacts || (exit /b)
701704
:: Installer
702705
move %PackageRoot%\installer\installer.exe %BuildRoot%\artifacts || (exit /b)
703706

0 commit comments

Comments
 (0)