Skip to content

Commit

Permalink
CI. Add Windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
lganzzzo committed Oct 5, 2019
1 parent d0b533f commit ab5d71c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,35 @@ jobs:
make test ARGS="-V"
displayName: 'Test'
workingDirectory: build
- job: windows
displayName: 'Build - Windows'
continueOnError: false
pool:
vmImage: 'windows-latest'
workspace:
clean: all
steps:
- script: |
MD build
- script: |
git clone https://github.com/oatpp/oatpp
MD oatpp\build
displayName: 'Checkout - oatpp'
workingDirectory: build
- script: |
cmake ..
cmake --build . --target INSTALL
displayName: 'Build - oatpp'
workingDirectory: build\oatpp\build
- script: |
cmake ..
cmake --build .
displayName: 'Build - module'
workingDirectory: build
- script: |
module-tests.exe
displayName: 'Test'
workingDirectory: build\test\Debug\

0 comments on commit ab5d71c

Please sign in to comment.