From e39c8ab6df40cf68c59d607dbb14407cbba5e2b3 Mon Sep 17 00:00:00 2001 From: mjbudd77 <44712797+mjbudd77@users.noreply.github.com> Date: Fri, 8 May 2020 07:53:39 -0400 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 00000000..38d9a371 --- /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'