From 4cad3243876f9e702f275e8cbbd5299cf5cb1d9b Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" Date: Fri, 19 Oct 2018 23:32:35 +0000 Subject: [PATCH] Set up CI with Azure Pipelines --- azure-pipelines.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..00ba6c6 --- /dev/null +++ b/azure-pipelines.yml @@ -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' \ No newline at end of file