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 6
6
trigger :
7
7
branches :
8
8
include :
9
- - master
10
- - dev3
11
- - dev2
12
- - dev
9
+ - main
10
+ - dev*
13
11
tags :
14
12
include :
15
13
- v*
@@ -196,35 +194,6 @@ jobs:
196
194
# Other OS versions (just debug mode)
197
195
# ----------------------------------------------------------
198
196
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
-
228
197
- job :
229
198
displayName : Ubuntu 24.04
230
199
pool :
Original file line number Diff line number Diff line change @@ -72,15 +72,14 @@ Enjoy!
72
72
73
73
### Branches
74
74
75
- * ` master ` : latest stable release (still based on ` dev2 ` ).
75
+ * ` main ` : latest stable release (still based on ` dev2 ` ).
76
76
* ` dev ` : development branch for mimalloc v1. Use this branch for submitting PR's.
77
77
* ` dev2 ` : development branch for mimalloc v2. This branch is downstream of ` dev `
78
78
(and is essentially equal to ` dev ` except for ` src/segment.c ` ). Uses larger sliced segments to manage
79
79
mimalloc pages that can reduce fragmentation.
80
80
* ` dev3 ` : development branch for mimalloc v3-beta. This branch is downstream of ` dev ` . This version
81
81
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.
84
83
85
84
### Releases
86
85
You can’t perform that action at this time.
0 commit comments