From b651d0e5464ddaf96be0b432eef35a5549406532 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Thu, 25 Dec 2025 17:34:25 +0900 Subject: [PATCH] Removed env variables for arch for Windows images --- Dockerfiles/build-base/windows/Dockerfile.agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfiles/build-base/windows/Dockerfile.agent b/Dockerfiles/build-base/windows/Dockerfile.agent index 0123531ea..3da517ddf 100644 --- a/Dockerfiles/build-base/windows/Dockerfile.agent +++ b/Dockerfiles/build-base/windows/Dockerfile.agent @@ -214,7 +214,7 @@ RUN Import-Module (Get-ChildItem $env:VS_PATH -Recurse -File -Filter Microsoft.V $env:CL = """$env:CL /MP"""; ` cmake -S $env:BUILD_SRC\zlib -B $env:BUILD_SRC\zlib\build ` -G """Visual Studio 17 2022""" ` - -A $env:BUILD_ARCH ` + -A x64 ` -DBUILD_SHARED_LIBS=OFF ` -DCMAKE_MSVC_RUNTIME_LIBRARY="""MultiThreaded$<$:Debug>""" ` -DCMAKE_INSTALL_PREFIX="""$env:BUILD_OUTPUT\zlib"""; `