From 00b7706e1f018cb008f6db80441ceaa853fc59cd Mon Sep 17 00:00:00 2001 From: Min RK Date: Sun, 8 Sep 2019 12:34:11 +0200 Subject: [PATCH] git needs to be set up --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4616eb59..2fac5dad 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,6 +7,11 @@ steps: inputs: versionSpec: '3.6' +- script: | + git config --global user.email "ci@fake.tld" + git config --global user.name "CI Services" + displayName: 'Set up git' + - script: python -m pip install --upgrade pip setuptools wheel displayName: 'Install tools'