diff options
| author | Oskari Timperi <oskari.timperi@iki.fi> | 2019-06-19 21:31:10 +0300 |
|---|---|---|
| committer | Oskari Timperi <oskari.timperi@iki.fi> | 2019-06-19 21:31:10 +0300 |
| commit | f780f10895ee5ffbd77df853f531f897dd5e080b (patch) | |
| tree | a97c236b7356c5f8d005580bf106fd64ae9bb673 | |
| parent | e65133cd66c457d23297241c1cb9be8e988aa5fb (diff) | |
| download | portablepython-f780f10895ee5ffbd77df853f531f897dd5e080b.tar.gz portablepython-f780f10895ee5ffbd77df853f531f897dd5e080b.zip | |
Build all 3.x.y versions that have .exe installers
| -rw-r--r-- | azure-pipelines.yml | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 05de534..ae57cc6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,18 +6,125 @@ pool: strategy: matrix: + PY350_32: + PYVERSION: 3.5.0 + PYARCH: 32 + PY350_64: + PYVERSION: 3.5.0 + PYARCH: 64 + PY351_32: PYVERSION: 3.5.1 PYARCH: 32 PY351_64: PYVERSION: 3.5.1 PYARCH: 64 + + PY352_32: + PYVERSION: 3.5.2 + PYARCH: 32 + PY352_64: + PYVERSION: 3.5.2 + PYARCH: 64 + + PY353_32: + PYVERSION: 3.5.3 + PYARCH: 32 + PY353_64: + PYVERSION: 3.5.3 + PYARCH: 64 + PY354_32: PYVERSION: 3.5.4 PYARCH: 32 PY354_64: PYVERSION: 3.5.4 PYARCH: 64 + + PY360_32: + PYVERSION: 3.6.0 + PYARCH: 32 + PY360_64: + PYVERSION: 3.6.0 + PYARCH: 64 + + PY361_32: + PYVERSION: 3.6.1 + PYARCH: 32 + PY361_64: + PYVERSION: 3.6.1 + PYARCH: 64 + + PY362_32: + PYVERSION: 3.6.2 + PYARCH: 32 + PY362_64: + PYVERSION: 3.6.2 + PYARCH: 64 + + PY363_32: + PYVERSION: 3.6.3 + PYARCH: 32 + PY363_64: + PYVERSION: 3.6.3 + PYARCH: 64 + + PY364_32: + PYVERSION: 3.6.4 + PYARCH: 32 + PY364_64: + PYVERSION: 3.6.4 + PYARCH: 64 + + PY365_32: + PYVERSION: 3.6.5 + PYARCH: 32 + PY365_64: + PYVERSION: 3.6.5 + PYARCH: 64 + + PY366_32: + PYVERSION: 3.6.6 + PYARCH: 32 + PY366_64: + PYVERSION: 3.6.6 + PYARCH: 64 + + PY367_32: + PYVERSION: 3.6.7 + PYARCH: 32 + PY367_64: + PYVERSION: 3.6.7 + PYARCH: 64 + + PY368_32: + PYVERSION: 3.6.8 + PYARCH: 32 + PY368_64: + PYVERSION: 3.6.8 + PYARCH: 64 + + PY370_32: + PYVERSION: 3.7.0 + PYARCH: 32 + PY370_64: + PYVERSION: 3.7.0 + PYARCH: 64 + + PY371_32: + PYVERSION: 3.7.1 + PYARCH: 32 + PY371_64: + PYVERSION: 3.7.1 + PYARCH: 64 + + PY372_32: + PYVERSION: 3.7.2 + PYARCH: 32 + PY372_64: + PYVERSION: 3.7.2 + PYARCH: 64 + PY373_32: PYVERSION: 3.7.3 PYARCH: 32 |
