6 Star 55 Fork 19

Gitee 极速下载/oatpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/oatpp/oatpp
克隆/下载
azure-pipelines.yml 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
Leonid Stryzhevskyi 提交于 2023-04-19 04:54 +08:00 . fix ubuntu image version
# 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'
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_22_04_mem_pool_on
displayName: 'Build - Ubuntu 22.04'
continueOnError: false
pool:
vmImage: 'ubuntu-22.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: macOS_mem_pool_on
displayName: 'Build - macOS'
continueOnError: false
pool:
vmImage: 'macOS-latest'
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: windows_mem_pool_off
displayName: 'Build - Windows'
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\
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/oatpp.git
git@gitee.com:mirrors/oatpp.git
mirrors
oatpp
oatpp
master

搜索帮助