Merge pull request #1093 from daanx/main

update azure pipeline trigger for the main branch (instead of master)
This commit is contained in:
Daan 2025-05-30 10:16:04 -07:00 committed by GitHub
commit d2e259cb57
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 8 deletions

View file

@ -6,10 +6,8 @@
trigger:
branches:
include:
- master
- dev3
- dev2
- dev
- main
- dev*
tags:
include:
- v*

View file

@ -72,15 +72,14 @@ Enjoy!
### Branches
* `master`: latest stable release (still based on `dev2`).
* `main`: latest stable release (still based on `dev2`).
* `dev`: development branch for mimalloc v1. **Use this branch for submitting PR's**.
* `dev2`: development branch for mimalloc v2. This branch is downstream of `dev`
(and is essentially equal to `dev` except for `src/segment.c`). Uses larger sliced segments to manage
mimalloc pages that can reduce fragmentation.
* `dev3`: development branch for mimalloc v3-beta. This branch is downstream of `dev`. This version
* `dev3`: development branch for mimalloc v3-beta. This branch is also downstream of `dev`. This version
simplifies the lock-free ownership of previous versions, has no thread-local segments any more.
This improves sharing of memory between threads, and on certain large workloads may use less memory
with less fragmentation.
This improves sharing of memory between threads, and on certain large workloads may use (much) less memory.
### Releases