From 09296b4fd4ac7829a229574982fabc2cc21fdefd Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 1 May 2019 09:54:48 +0200 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000000..3c674f99df8 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,31 @@ +# https://dev.azure.com/home-assistant + +trigger: + branches: + include: + - dev + tags: + include: + - '*' + +variables: + versionWheels: 'dev' + versionBuilder: '3.1' + + +jobs: + +- job: 'Wheels' + condition: eq(variables['Build.SourceBranchName'], 'dev') + pool: + vmImage: 'ubuntu-16.04' + strategy: + maxParallel: 2 + matrix: + amd64: + buildContainer: 'homeassistant/amd64-wheels:$(versionWheels)' + container: $[ variables['buildContainer'] ] + steps: + - script: | + python3 -m builder --help + displayName: 'Run wheels build'