From 8833204e879ee6b01c012ae257eeb20ae361b688 Mon Sep 17 00:00:00 2001 From: Chris BeHanna Date: Mon, 29 Jul 2019 12:09:39 -0500 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..38d9a371c6 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,15 @@ +# 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 + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: | + make + displayName: 'make'