Skip to content

Commit 8000583

Browse files
temporary CI test
1 parent 276261c commit 8000583

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

utils/build-windows-toolchain.bat

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,23 +60,29 @@ set TMPDIR=%BuildRoot%\tmp
6060
set NINJA_STATUS=[%%f/%%t][%%p][%%es]
6161

6262
:: Build the -Test argument, if any, by subtracting skipped tests
63-
set TestArg=-Test lld,lldb,swift,dispatch,foundation,xctest,swift-format,sourcekit-lsp,swiftpm,
63+
set TestArg=-Test lldb,
6464
for %%I in (%SKIP_TESTS%) do (call set TestArg=%%TestArg:%%I,=%%)
6565
if "%TestArg:~-1%"=="," (set TestArg=%TestArg:~0,-1%) else (set TestArg= )
6666

6767
:: Build the -SkipPackaging argument, if any
6868
set SkipPackagingArg=-SkipPackaging
6969
if not "%SKIP_PACKAGING%"=="1" set "SkipPackagingArg= "
7070

71+
:: Build the -WindowsSDKs argument, if any
72+
set "WindowsSDKsArg= "
73+
if not "%WINDOWS_SDKS%"=="" set "WindowsSDKsArg=-WindowsSDKs %WINDOWS_SDKS%"
74+
7175
call :CloneRepositories || (exit /b 1)
7276

7377
:: We only have write access to BuildRoot, so use that as the image root.
7478
powershell.exe -ExecutionPolicy RemoteSigned -File %~dp0build.ps1 ^
7579
-SourceCache %SourceRoot% ^
7680
-BinaryCache %BuildRoot% ^
7781
-ImageRoot %BuildRoot% ^
82+
-WindowsSDKs X64 ^
7883
%SkipPackagingArg% ^
7984
%TestArg% ^
85+
-SkipPackaging ^
8086
-Stage %PackageRoot% ^
8187
-Summary || (exit /b 1)
8288

0 commit comments

Comments
 (0)