Skip to content

Commit e645ad8

Browse files
committed
WIP
1 parent 844d103 commit e645ad8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

utils/build-windows-toolchain.bat

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
setlocal enableextensions enabledelayedexpansion
1212

13+
SET
14+
1315
:: Work around CI invocation in vsdevcmd
1416
:: The build relies on build.ps1, which should not be called in a vs dev cmd
1517
if "%VSCMD_ARG_HOST_ARCH%"=="" goto Start
@@ -57,10 +59,10 @@ set TEMP=%BuildRoot%\tmp
5759
set TMP=%BuildRoot%\tmp
5860
set TMPDIR=%BuildRoot%\tmp
5961

60-
set NINJA_STATUS=[%%f/%%t][%%p][%%es]
62+
set NINJA_STATUS=[%%f/%%t][%%p][%%es]
6163

6264
:: Build the -Test argument, if any, by subtracting skipped tests
63-
set TestArg=-Test lld,swift,dispatch,foundation,xctest,
65+
set TestArg=-Test lld,swift,dispatch,foundation,xctest,swift-format,
6466
for %%I in (%SKIP_TESTS%) do (call set TestArg=%%TestArg:%%I,=%%)
6567
if "%TestArg:~-1%"=="," (set TestArg=%TestArg:~0,-1%) else (set TestArg= )
6668

utils/update_checkout/update_checkout/update_checkout.py

+2
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,8 @@ def run_for_repo_and_each_submodule_rec(cmd):
244244
full_target = full_target_name('origin', checkout_target)
245245
shell.run(['git', 'reset', '--hard', full_target],
246246
echo=True, prefix=prefix)
247+
shell.run(['git', 'status'],
248+
echo=True, prefix=prefix)
247249
return
248250

249251
# Query whether we have a "detached HEAD", which will mean that

0 commit comments

Comments
 (0)