authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-01 16:45:52-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-01 19:49:08-07:00
log7cec11a66bfd9d38bd355ba55aca4fa0e61ba4b5
tree5cabd289d0e88fce6e70277f4ee74853424070c4
parent7fb9f58f85f1dc9c18c49bc1114d9d978fdbed33

CI: update windows scripts to new CLI module syntax


2 files changed, 8 insertions(+), 8 deletions(-)

ci/x86_64-windows-debug.ps1+4-4
......@@ -76,15 +76,15 @@ Write-Output "Build x86_64-windows-msvc behavior tests using the C backend..."
7676CheckLastExitCode
7777
7878& "stage3-debug\bin\zig.exe" build-obj `
79 ..\lib\compiler_rt.zig `
8079 --zig-lib-dir "$ZIG_LIB_DIR" `
8180 -ofmt=c `
8281 -OReleaseSmall `
8382 --name compiler_rt `
8483 -femit-bin="compiler_rt-x86_64-windows-msvc.c" `
85 --mod build_options::config.zig `
86 --deps build_options `
87 -target x86_64-windows-msvc
84 --dep build_options `
85 -target x86_64-windows-msvc `
86 --mod root ..\lib\compiler_rt.zig `
87 --mod build_options config.zig
8888CheckLastExitCode
8989
9090Import-Module "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
ci/x86_64-windows-release.ps1+4-4
......@@ -75,15 +75,15 @@ Write-Output "Build x86_64-windows-msvc behavior tests using the C backend..."
7575CheckLastExitCode
7676
7777& "stage3-release\bin\zig.exe" build-obj `
78 ..\lib\compiler_rt.zig `
7978 --zig-lib-dir "$ZIG_LIB_DIR" `
8079 -ofmt=c `
8180 -OReleaseSmall `
8281 --name compiler_rt `
8382 -femit-bin="compiler_rt-x86_64-windows-msvc.c" `
84 --mod build_options::config.zig `
85 --deps build_options `
86 -target x86_64-windows-msvc
83 --dep build_options `
84 -target x86_64-windows-msvc `
85 --mod root ..\lib\compiler_rt.zig `
86 --mod build_options config.zig
8787CheckLastExitCode
8888
8989Import-Module "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"