From 31228e4f84ed6331ce7621d62dedeb34873bdc06 Mon Sep 17 00:00:00 2001 From: kcbanner Date: Sat, 21 Jan 2023 16:32:37 -0500 Subject: [PATCH] ci: fixup incorrect paths --- ci/x86_64-windows-debug.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/x86_64-windows-debug.ps1 b/ci/x86_64-windows-debug.ps1 index b6a078430c..50454fbfe9 100644 --- a/ci/x86_64-windows-debug.ps1 +++ b/ci/x86_64-windows-debug.ps1 @@ -68,7 +68,7 @@ Write-Output "Testing Autodocs..." CheckLastExitCode Write-Output "Build x86_64-windows-msvc behavior tests using the C backend..." -& "stage3-release\bin\zig.exe" test ` +& "stage3-debug\bin\zig.exe" test ` ..\test\behavior.zig ` --zig-lib-dir "$ZIG_LIB_DIR" ` -I..\test ` @@ -78,7 +78,7 @@ Write-Output "Build x86_64-windows-msvc behavior tests using the C backend..." -target x86_64-windows-msvc CheckLastExitCode -& "stage3-release\bin\zig.exe" build-obj ` +& "stage3-debug\bin\zig.exe" build-obj ` ..\lib\compiler_rt.zig ` --zig-lib-dir "$ZIG_LIB_DIR" ` -ofmt=c `