diff options
| author | Oskari Timperi <oswjk@users.noreply.github.com> | 2019-06-18 22:31:52 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-18 22:31:52 +0300 |
| commit | 0822e8c34fc7fc2ffc242a7c0992e506d49f1bce (patch) | |
| tree | 070898a802435a9cad22a05269db5ca9b1a74acb | |
| parent | 6a7b41a7c7b4ae2a2ca4bc60a06605e728965a96 (diff) | |
| download | portablepython-0822e8c34fc7fc2ffc242a7c0992e506d49f1bce.tar.gz portablepython-0822e8c34fc7fc2ffc242a7c0992e506d49f1bce.zip | |
Update azure-pipelines.yml
| -rw-r--r-- | azure-pipelines.yml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b44cda1..e872641 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,6 +4,16 @@ trigger: pool: vmImage: 'vs2017-win2016' -steps: -- powershell: .\download.ps1 - displayName: 'Run the build' +jobs: +- job: build + steps: + - powershell: .\download.ps1 + displayName: 'Run the build' + strategy: + matrix: + PY351_32: + PYVERSION: 3.5.1 + PYARCH: 32 + PY351_64: + PYVERSION: 3.5.1 + PYARCH: 64 |
