File tree Expand file tree Collapse file tree 2 files changed +4
-36
lines changed Expand file tree Collapse file tree 2 files changed +4
-36
lines changed Original file line number Diff line number Diff line change 66trigger :
77 branches :
88 include :
9- - master
10- - dev3
11- - dev2
12- - dev
9+ - main
10+ - dev*
1311 tags :
1412 include :
1513 - v*
@@ -196,35 +194,6 @@ jobs:
196194# Other OS versions (just debug mode)
197195# ----------------------------------------------------------
198196
199- - job :
200- displayName : Windows 2019
201- pool :
202- vmImage :
203- windows-2019
204- strategy :
205- matrix :
206- Debug :
207- BuildType : debug
208- cmakeExtraArgs : -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
209- MSBuildConfiguration : Debug
210- Release :
211- BuildType : release
212- cmakeExtraArgs : -DCMAKE_BUILD_TYPE=Release
213- MSBuildConfiguration : Release
214- steps :
215- - task : CMake@1
216- inputs :
217- workingDirectory : $(BuildType)
218- cmakeArgs : .. $(cmakeExtraArgs)
219- - task : MSBuild@1
220- inputs :
221- solution : $(BuildType)/libmimalloc.sln
222- configuration : ' $(MSBuildConfiguration)'
223- msbuildArguments : -m
224- - script : ctest --verbose --timeout 240 -C $(MSBuildConfiguration)
225- workingDirectory : $(BuildType)
226- displayName : CTest
227-
228197- job :
229198 displayName : Ubuntu 24.04
230199 pool :
Original file line number Diff line number Diff line change @@ -72,15 +72,14 @@ Enjoy!
7272
7373### Branches
7474
75- * ` master ` : latest stable release (still based on ` dev2 ` ).
75+ * ` main ` : latest stable release (still based on ` dev2 ` ).
7676* ` dev ` : development branch for mimalloc v1. Use this branch for submitting PR's.
7777* ` dev2 ` : development branch for mimalloc v2. This branch is downstream of ` dev `
7878 (and is essentially equal to ` dev ` except for ` src/segment.c ` ). Uses larger sliced segments to manage
7979 mimalloc pages that can reduce fragmentation.
8080* ` dev3 ` : development branch for mimalloc v3-beta. This branch is downstream of ` dev ` . This version
8181 simplifies the lock-free ownership of previous versions, has no thread-local segments any more.
82- This improves sharing of memory between threads, and on certain large workloads may use less memory
83- with less fragmentation.
82+ This improves sharing of memory between threads, and on certain large workloads may use (much) less memory.
8483
8584### Releases
8685
You can’t perform that action at this time.
0 commit comments