2019-06-25 10:00:41 +02:00
|
|
|
# Starter pipeline
|
|
|
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
|
|
|
# Add steps that build, run tests, deploy, and more:
|
|
|
|
# https://aka.ms/yaml
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
- master
|
|
|
|
- dev
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job:
|
|
|
|
displayName: Windows
|
|
|
|
pool:
|
|
|
|
vmImage:
|
|
|
|
windows-2019
|
2020-01-08 23:27:18 -08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Debug:
|
|
|
|
BuildType: debug
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
2020-04-14 12:54:35 +08:00
|
|
|
MSBuildConfiguration: Debug
|
2020-01-08 23:27:18 -08:00
|
|
|
Release:
|
|
|
|
BuildType: release
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
2020-04-14 12:54:35 +08:00
|
|
|
MSBuildConfiguration: Release
|
2020-01-08 23:54:56 -08:00
|
|
|
Secure:
|
|
|
|
BuildType: secure
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON
|
2020-04-14 12:54:35 +08:00
|
|
|
MSBuildConfiguration: Release
|
2019-06-25 10:00:41 +02:00
|
|
|
steps:
|
|
|
|
- task: CMake@1
|
|
|
|
inputs:
|
2020-01-08 23:27:18 -08:00
|
|
|
workingDirectory: $(BuildType)
|
|
|
|
cmakeArgs: .. $(cmakeExtraArgs)
|
2019-06-25 10:00:41 +02:00
|
|
|
- task: MSBuild@1
|
|
|
|
inputs:
|
2020-01-08 23:27:18 -08:00
|
|
|
solution: $(BuildType)/libmimalloc.sln
|
2020-04-14 12:54:35 +08:00
|
|
|
configuration: '$(MSBuildConfiguration)'
|
2020-09-05 18:02:21 -07:00
|
|
|
- script: |
|
|
|
|
cd $(BuildType)
|
|
|
|
ctest --verbose --timeout 120
|
|
|
|
displayName: CTest
|
2020-09-05 12:41:06 -07:00
|
|
|
#- script: $(BuildType)\$(BuildType)\mimalloc-test-stress
|
|
|
|
# displayName: TestStress
|
2020-09-05 11:47:27 -07:00
|
|
|
#- upload: $(Build.SourcesDirectory)/$(BuildType)
|
|
|
|
# artifact: mimalloc-windows-$(BuildType)
|
2019-07-10 22:13:34 -07:00
|
|
|
|
2019-06-25 10:00:41 +02:00
|
|
|
- job:
|
|
|
|
displayName: Linux
|
|
|
|
pool:
|
|
|
|
vmImage:
|
|
|
|
ubuntu-16.04
|
2019-07-10 22:13:34 -07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Debug:
|
|
|
|
CC: gcc
|
2019-07-10 22:44:36 -07:00
|
|
|
CXX: g++
|
2019-07-10 22:21:08 -07:00
|
|
|
BuildType: debug
|
2019-11-21 16:10:21 -08:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
2019-07-10 22:13:34 -07:00
|
|
|
Release:
|
|
|
|
CC: gcc
|
2019-07-10 22:44:36 -07:00
|
|
|
CXX: g++
|
2019-07-10 22:21:08 -07:00
|
|
|
BuildType: release
|
2019-07-10 22:41:53 -07:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
2019-11-21 16:10:21 -08:00
|
|
|
Secure:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
BuildType: secure
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON
|
2020-01-16 16:08:23 -08:00
|
|
|
Debug++:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
2020-01-16 16:52:44 -08:00
|
|
|
BuildType: debug-cxx
|
2020-01-16 16:08:23 -08:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON -DMI_USE_CXX=ON
|
2019-07-10 22:41:53 -07:00
|
|
|
Debug Clang:
|
|
|
|
CC: clang
|
2019-07-10 22:44:36 -07:00
|
|
|
CXX: clang++
|
2019-07-10 22:41:53 -07:00
|
|
|
BuildType: debug-clang
|
2019-11-21 16:10:21 -08:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
2019-07-10 22:41:53 -07:00
|
|
|
Release Clang:
|
|
|
|
CC: clang
|
2019-07-10 22:44:36 -07:00
|
|
|
CXX: clang++
|
2019-07-10 22:41:53 -07:00
|
|
|
BuildType: release-clang
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
2019-11-21 16:10:21 -08:00
|
|
|
Secure Clang:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
BuildType: secure-clang
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON
|
2020-01-16 16:49:59 -08:00
|
|
|
Debug++ Clang:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
2020-01-16 16:52:44 -08:00
|
|
|
BuildType: debug-clang-cxx
|
2020-01-16 16:49:59 -08:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON -DMI_USE_CXX=ON
|
2019-06-25 10:00:41 +02:00
|
|
|
steps:
|
|
|
|
- task: CMake@1
|
|
|
|
inputs:
|
2019-07-10 22:13:34 -07:00
|
|
|
workingDirectory: $(BuildType)
|
2019-07-10 22:21:08 -07:00
|
|
|
cmakeArgs: .. $(cmakeExtraArgs)
|
2019-07-10 22:22:44 -07:00
|
|
|
- script: make -j$(nproc) -C $(BuildType)
|
2019-07-10 22:44:36 -07:00
|
|
|
displayName: Make
|
2019-07-10 22:22:44 -07:00
|
|
|
- script: make test -C $(BuildType)
|
2020-01-08 23:54:56 -08:00
|
|
|
displayName: CTest
|
2020-05-05 10:46:39 -07:00
|
|
|
# - upload: $(Build.SourcesDirectory)/$(BuildType)
|
|
|
|
# artifact: mimalloc-ubuntu-$(BuildType)
|
2019-07-10 22:13:34 -07:00
|
|
|
|
2019-06-25 10:00:41 +02:00
|
|
|
- job:
|
|
|
|
displayName: macOS
|
|
|
|
pool:
|
|
|
|
vmImage:
|
|
|
|
macOS-10.14
|
2020-01-08 23:54:56 -08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Debug:
|
|
|
|
BuildType: debug
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
|
|
|
Release:
|
|
|
|
BuildType: release
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
|
|
|
Secure:
|
|
|
|
BuildType: secure
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON
|
2019-06-25 10:00:41 +02:00
|
|
|
steps:
|
|
|
|
- task: CMake@1
|
|
|
|
inputs:
|
2020-01-08 23:54:56 -08:00
|
|
|
workingDirectory: $(BuildType)
|
|
|
|
cmakeArgs: .. $(cmakeExtraArgs)
|
|
|
|
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
|
|
|
|
displayName: Make
|
|
|
|
- script: make test -C $(BuildType)
|
|
|
|
displayName: CTest
|
2020-05-05 10:46:39 -07:00
|
|
|
# - upload: $(Build.SourcesDirectory)/$(BuildType)
|
|
|
|
# artifact: mimalloc-macos-$(BuildType)
|