From 095c4a6b3853a632823ff6e5444173e85170a4d2 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 30 Sep 2018 15:05:55 +0200 Subject: [PATCH] Set up Windows CI with Azure Pipelines --- azure-pipelines.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..fd1ae41 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,12 @@ +# 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: | + make + displayName: 'make'