Skip to content

Commit

Permalink
azure-pipeline: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed May 15, 2019
1 parent efe66bc commit 5a906a0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
variables:
pythonVersions: ['3.7', '3.6', '3.5']
operatingSystems: ['ubuntu-16.04', 'macos-10.13', 'vs2017-win2016']

trigger:
branches:
include:
- master

parameters:
pythonVersions: ['3.7', '3.6', '3.5'],
operatingSystems: ['ubuntu-16.04', 'macos-10.13', 'vs2017-win2016']

jobs:

- job: 'Test'
displayName: "Evaluate cookiecutter template"

strategy:
matrix:
${{ each py in parameters.pythonVersions }}:
${{ each os in parameters.operatingSystems }}:
${{ each py in variables.pythonVersions }}:
${{ each os in variables.operatingSystems }}:
${{ format('{0}{1}', py, os) }}:
imageName: ${{ image }}
pythonVersion: ${{ py }}
Expand Down

0 comments on commit 5a906a0

Please sign in to comment.