1 Star 0 Fork 2

zhengzhengguang/gitee_oatpp

forked from mirrors/oatpp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
azure-pipelines.yml 3.81 KB
一键复制 编辑 原始数据 按行查看 历史
Leonid Stryzhevskyi 提交于 2021-10-19 15:40 . Update azure-pipelines.yml
# 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
jobs:
- job: ubuntu_20_04_mem_pool_on
displayName: 'Build - Ubuntu 20.04 - With Memory Pool'
continueOnError: false
pool:
vmImage: 'ubuntu-20.04'
workspace:
clean: all
steps:
- script: |
mkdir build
- script: |
cmake -DCMAKE_BUILD_TYPE=Release ..
make
displayName: 'CMake'
workingDirectory: build
- script: |
make test ARGS="-V"
displayName: 'Test'
workingDirectory: build
- job: ubuntu_20_04_mem_pool_off
displayName: 'Build - Ubuntu 20.04 - No Memory Pool'
continueOnError: false
pool:
vmImage: 'ubuntu-20.04'
workspace:
clean: all
steps:
- script: |
mkdir build
- script: |
cmake -DOATPP_DISABLE_POOL_ALLOCATIONS=ON -DCMAKE_BUILD_TYPE=Release ..
make
displayName: 'CMake'
workingDirectory: build
- script: |
make test ARGS="-V"
displayName: 'Test'
workingDirectory: build
- job: ubuntu_18_04_mem_pool_on
displayName: 'Build - Ubuntu 18.04 - With Memory Pool'
continueOnError: false
pool:
vmImage: 'Ubuntu 18.04'
workspace:
clean: all
steps:
- script: |
mkdir build
- script: |
cmake -DCMAKE_BUILD_TYPE=Release ..
make
displayName: 'CMake'
workingDirectory: build
- script: |
make test ARGS="-V"
displayName: 'Test'
workingDirectory: build
- job: ubuntu_18_04_mem_pool_off
displayName: 'Build - Ubuntu 18.04 - No Memory Pool'
continueOnError: false
pool:
vmImage: 'Ubuntu 18.04'
workspace:
clean: all
steps:
- script: |
mkdir build
- script: |
cmake -DOATPP_DISABLE_POOL_ALLOCATIONS=ON -DCMAKE_BUILD_TYPE=Release ..
make
displayName: 'CMake'
workingDirectory: build
- script: |
make test ARGS="-V"
displayName: 'Test'
workingDirectory: build
- job: macOS_mem_pool_on
displayName: 'Build - macOS - With Memory Pool'
continueOnError: false
pool:
vmImage: 'macOS-10.14'
workspace:
clean: all
steps:
- script: |
mkdir build
- script: |
cmake -DCMAKE_BUILD_TYPE=Release ..
make
displayName: 'CMake'
workingDirectory: build
- script: |
make test ARGS="-V"
displayName: 'Test'
workingDirectory: build
- job: macOS_mem_pool_off
displayName: 'Build - macOS - No Memory Pool'
continueOnError: false
pool:
vmImage: 'macOS-10.14'
workspace:
clean: all
steps:
- script: |
mkdir build
- script: |
cmake -DOATPP_DISABLE_POOL_ALLOCATIONS=ON -DCMAKE_BUILD_TYPE=Release ..
make
displayName: 'CMake'
workingDirectory: build
- script: |
make test ARGS="-V"
displayName: 'Test'
workingDirectory: build
- job: windows_mem_pool_off
displayName: 'Build - Windows - With Memory Pool'
continueOnError: false
pool:
vmImage: 'windows-latest'
workspace:
clean: all
steps:
- script: |
MD build
- script: |
cmake ..
cmake --build .
displayName: 'CMake'
workingDirectory: build
- script: |
oatppAllTests.exe
displayName: 'Test'
workingDirectory: build\test\Debug\
- job: windows_mem_pool_on
displayName: 'Build - Windows - No Memory Pool'
continueOnError: false
pool:
vmImage: 'windows-latest'
workspace:
clean: all
steps:
- script: |
MD build
- script: |
cmake -DOATPP_DISABLE_POOL_ALLOCATIONS=ON ..
cmake --build .
displayName: 'CMake'
workingDirectory: build
- script: |
oatppAllTests.exe
displayName: 'Test'
workingDirectory: build\test\Debug\
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zheng_zhg/gitee_oatpp.git
git@gitee.com:zheng_zhg/gitee_oatpp.git
zheng_zhg
gitee_oatpp
gitee_oatpp
master

搜索帮助