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*
@@ -185,35 +183,6 @@ jobs:
185183# Other OS versions (just debug mode)
186184# ----------------------------------------------------------
187185
188- - job :
189- displayName : Windows 2019
190- pool :
191- vmImage :
192- windows-2019
193- strategy :
194- matrix :
195- Debug :
196- BuildType : debug
197- cmakeExtraArgs : -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
198- MSBuildConfiguration : Debug
199- Release :
200- BuildType : release
201- cmakeExtraArgs : -DCMAKE_BUILD_TYPE=Release
202- MSBuildConfiguration : Release
203- steps :
204- - task : CMake@1
205- inputs :
206- workingDirectory : $(BuildType)
207- cmakeArgs : .. $(cmakeExtraArgs)
208- - task : MSBuild@1
209- inputs :
210- solution : $(BuildType)/libmimalloc.sln
211- configuration : ' $(MSBuildConfiguration)'
212- msbuildArguments : -m
213- - script : ctest --verbose --timeout 240 -C $(MSBuildConfiguration)
214- workingDirectory : $(BuildType)
215- displayName : CTest
216-
217186- job :
218187 displayName : Ubuntu 24.04
219188 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