mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-06 23:39:31 +03:00
temporarily add macOS 13 and 12 for testing
This commit is contained in:
parent
5e434a6e66
commit
6798375f47
1 changed files with 48 additions and 0 deletions
|
@ -305,3 +305,51 @@ jobs:
|
||||||
- script: ctest --verbose --timeout 180
|
- script: ctest --verbose --timeout 180
|
||||||
workingDirectory: $(BuildType)
|
workingDirectory: $(BuildType)
|
||||||
displayName: CTest
|
displayName: CTest
|
||||||
|
|
||||||
|
- job:
|
||||||
|
displayName: macOS 13 (Ventura)
|
||||||
|
pool:
|
||||||
|
vmImage:
|
||||||
|
macOS-13
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
Debug:
|
||||||
|
BuildType: debug
|
||||||
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
||||||
|
Release:
|
||||||
|
BuildType: release
|
||||||
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
||||||
|
steps:
|
||||||
|
- task: CMake@1
|
||||||
|
inputs:
|
||||||
|
workingDirectory: $(BuildType)
|
||||||
|
cmakeArgs: .. $(cmakeExtraArgs)
|
||||||
|
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
|
||||||
|
displayName: Make
|
||||||
|
- script: ctest --verbose --timeout 180
|
||||||
|
workingDirectory: $(BuildType)
|
||||||
|
displayName: CTest
|
||||||
|
|
||||||
|
- job:
|
||||||
|
displayName: macOS 12 (Monterey)
|
||||||
|
pool:
|
||||||
|
vmImage:
|
||||||
|
macOS-12
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
Debug:
|
||||||
|
BuildType: debug
|
||||||
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
||||||
|
Release:
|
||||||
|
BuildType: release
|
||||||
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
||||||
|
steps:
|
||||||
|
- task: CMake@1
|
||||||
|
inputs:
|
||||||
|
workingDirectory: $(BuildType)
|
||||||
|
cmakeArgs: .. $(cmakeExtraArgs)
|
||||||
|
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
|
||||||
|
displayName: Make
|
||||||
|
- script: ctest --verbose --timeout 180
|
||||||
|
workingDirectory: $(BuildType)
|
||||||
|
displayName: CTest
|
||||||
|
|
Loading…
Add table
Reference in a new issue