From 19da0301c8933db6b16916b8b85aa61d4509a030 Mon Sep 17 00:00:00 2001 From: Arjun Attam Date: Thu, 25 Apr 2019 13:42:46 -0700 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..640a28578 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: 'vs2017-win2016' + +steps: +- script: | + echo Starting the build + mvn package + displayName: 'Build with Maven' \ No newline at end of file