mirror of
https://github.com/oatpp/oatpp-swagger.git
synced 2024-11-21 03:12:00 +08:00
26 lines
666 B
YAML
26 lines
666 B
YAML
|
# 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: macOS
|
||
|
displayName: 'Build - macOS-10.13'
|
||
|
continueOnError: false
|
||
|
pool:
|
||
|
vmImage: 'macOS-10.13'
|
||
|
workspace:
|
||
|
clean: all
|
||
|
steps:
|
||
|
- script: |
|
||
|
mkdir build
|
||
|
- task: CMake@1
|
||
|
- script: |
|
||
|
cmake -DOATPP_MODULES_LOCATION=EXTERNAL ..
|
||
|
make
|
||
|
displayName: 'CMake'
|
||
|
workingDirectory: build
|
||
|
- script: |
|
||
|
make test ARGS="-V"
|
||
|
displayName: 'Test'
|
||
|
workingDirectory: build
|