Set up CI with Azure Pipelines

This commit is contained in:
azure-pipelines[bot] 2018-10-19 23:32:35 +00:00
parent 1c013677ea
commit 4cad324387
1 changed files with 17 additions and 0 deletions

17
azure-pipelines.yml Normal file
View File

@ -0,0 +1,17 @@
# C/C++ with GCC
# Build your C/C++ project with GCC using make.
# Add steps that publish test results, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: |
rm -rf build/
mkdir build
cd build
cmake ..
make
make test CTEST_OUTPUT_ON_FAILURE=TRUE
displayName: 'make'