Skip to content

Commit 0cece8e

Browse files
committed
CI: Optimize machine sizes for best speed/cost ratio
1 parent c76a6bd commit 0cece8e

File tree

2 files changed

+115
-44
lines changed

2 files changed

+115
-44
lines changed

.circleci/build_win.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cd build
2020
$boost_dir=(Resolve-Path $PSScriptRoot\..\deps\boost\lib\cmake\Boost-*)
2121
..\deps\cmake\bin\cmake -G "Visual Studio 16 2019" -DBoost_DIR="$boost_dir\" -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded -DCMAKE_INSTALL_PREFIX="$PSScriptRoot\..\upload" -DUSE_Z3=OFF ..
2222
if ( -not $? ) { throw "CMake configure failed." }
23-
msbuild solidity.sln /p:Configuration=Release /m:5 /v:minimal
23+
msbuild solidity.sln /p:Configuration=Release /m:10 /v:minimal
2424
if ( -not $? ) { throw "Build failed." }
25-
..\deps\cmake\bin\cmake --build . -j 5 --target install --config Release
25+
..\deps\cmake\bin\cmake --build . -j 10 --target install --config Release
2626
if ( -not $? ) { throw "Install target failed." }

0 commit comments

Comments
 (0)