2019-06-25 11:00:41 +03: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-09 10:27:18 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Debug:
|
|
|
|
BuildType: debug
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
|
|
|
Release:
|
|
|
|
BuildType: release
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
2020-01-09 10:54:56 +03:00
|
|
|
Secure:
|
|
|
|
BuildType: secure
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON
|
2019-06-25 11:00:41 +03:00
|
|
|
steps:
|
|
|
|
- task: CMake@1
|
|
|
|
inputs:
|
2020-01-09 10:27:18 +03:00
|
|
|
workingDirectory: $(BuildType)
|
|
|
|
cmakeArgs: .. $(cmakeExtraArgs)
|
2019-06-25 11:00:41 +03:00
|
|
|
- task: MSBuild@1
|
|
|
|
inputs:
|
2020-01-09 10:27:18 +03:00
|
|
|
solution: $(BuildType)/libmimalloc.sln
|
2020-01-09 10:47:40 +03:00
|
|
|
- script: |
|
2020-01-09 10:46:56 +03:00
|
|
|
cd $(BuildType)
|
|
|
|
ctest
|
2020-01-09 10:54:56 +03:00
|
|
|
displayName: CTest
|
2020-01-09 10:27:18 +03:00
|
|
|
- upload: $(Build.SourcesDirectory)/$(BuildType)
|
|
|
|
artifact: mimalloc-windows-$(BuildType)
|
2019-07-11 08:13:34 +03:00
|
|
|
|
2019-06-25 11:00:41 +03:00
|
|
|
- job:
|
|
|
|
displayName: Linux
|
|
|
|
pool:
|
|
|
|
vmImage:
|
|
|
|
ubuntu-16.04
|
2019-07-11 08:13:34 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Debug:
|
|
|
|
CC: gcc
|
2019-07-11 08:44:36 +03:00
|
|
|
CXX: g++
|
2019-07-11 08:21:08 +03:00
|
|
|
BuildType: debug
|
2019-11-22 03:10:21 +03:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
2019-07-11 08:13:34 +03:00
|
|
|
Release:
|
|
|
|
CC: gcc
|
2019-07-11 08:44:36 +03:00
|
|
|
CXX: g++
|
2019-07-11 08:21:08 +03:00
|
|
|
BuildType: release
|
2019-07-11 08:41:53 +03:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
2019-11-22 03:10:21 +03:00
|
|
|
Secure:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
|
|
|
BuildType: secure
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON
|
2020-01-17 03:08:23 +03:00
|
|
|
Debug++:
|
|
|
|
CC: gcc
|
|
|
|
CXX: g++
|
2020-01-17 03:52:44 +03:00
|
|
|
BuildType: debug-cxx
|
2020-01-17 03:08:23 +03:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON -DMI_USE_CXX=ON
|
2019-07-11 08:41:53 +03:00
|
|
|
Debug Clang:
|
|
|
|
CC: clang
|
2019-07-11 08:44:36 +03:00
|
|
|
CXX: clang++
|
2019-07-11 08:41:53 +03:00
|
|
|
BuildType: debug-clang
|
2019-11-22 03:10:21 +03:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON
|
2019-07-11 08:41:53 +03:00
|
|
|
Release Clang:
|
|
|
|
CC: clang
|
2019-07-11 08:44:36 +03:00
|
|
|
CXX: clang++
|
2019-07-11 08:41:53 +03:00
|
|
|
BuildType: release-clang
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release
|
2019-11-22 03:10:21 +03:00
|
|
|
Secure Clang:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
BuildType: secure-clang
|
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON
|
2020-01-17 03:49:59 +03:00
|
|
|
Debug++ Clang:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
2020-01-17 03:52:44 +03:00
|
|
|
BuildType: debug-clang-cxx
|
2020-01-17 03:49:59 +03:00
|
|
|
cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON -DMI_USE_CXX=ON
|
2019-06-25 11:00:41 +03:00
|
|
|
steps:
|
|
|
|
- task: CMake@1
|
|
|
|
inputs:
|
2019-07-11 08:13:34 +03:00
|
|
|
workingDirectory: $(BuildType)
|
2019-07-11 08:21:08 +03:00
|
|
|
cmakeArgs: .. $(cmakeExtraArgs)
|
2019-07-11 08:22:44 +03:00
|
|
|
- script: make -j$(nproc) -C $(BuildType)
|
2019-07-11 08:44:36 +03:00
|
|
|
displayName: Make
|
2019-07-11 08:22:44 +03:00
|
|
|
- script: make test -C $(BuildType)
|
2020-01-09 10:54:56 +03:00
|
|
|
displayName: CTest
|
2019-07-11 08:13:34 +03:00
|
|
|
- upload: $(Build.SourcesDirectory)/$(BuildType)
|
2020-01-09 10:27:18 +03:00
|
|
|
artifact: mimalloc-ubuntu-$(BuildType)
|
2019-07-11 08:13:34 +03:00
|
|
|
|
2019-06-25 11:00:41 +03:00
|
|
|
- job:
|
|
|
|
displayName: macOS
|
|
|
|
pool:
|
|
|
|
vmImage:
|
|
|
|
macOS-10.14
|
2020-01-09 10:54:56 +03: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 11:00:41 +03:00
|
|
|
steps:
|
|
|
|
- task: CMake@1
|
|
|
|
inputs:
|
2020-01-09 10:54:56 +03:00
|
|
|
workingDirectory: $(BuildType)
|
|
|
|
cmakeArgs: .. $(cmakeExtraArgs)
|
|
|
|
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
|
|
|
|
displayName: Make
|
|
|
|
- script: make test -C $(BuildType)
|
|
|
|
displayName: CTest
|
|
|
|
- upload: $(Build.SourcesDirectory)/$(BuildType)
|
|
|
|
artifact: mimalloc-macos-$(BuildType)
|