From 7597e1bc43d9ac88fcdfaaef9b7cfac700035547 Mon Sep 17 00:00:00 2001 From: dkanada Date: Sat, 13 Jun 2020 15:04:11 +0900 Subject: [PATCH] add empty azure pipeline --- azure.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 azure.yml diff --git a/azure.yml b/azure.yml new file mode 100644 index 00000000..b788c930 --- /dev/null +++ b/azure.yml @@ -0,0 +1,24 @@ +trigger: + batch: true + branches: + include: + - '*' + tags: + include: + - '*' + +pr: + branches: + include: + - '*' + +jobs: +- job: Build + displayName: 'Build' + + pool: + vmImage: 'ubuntu-latest' + + steps: + - script: 'echo hello world' + displayName: 'Initial Commit'