Skip to content

Commit

Permalink
Merge 949def5 into e0b4c94
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-urbanczyk authored Feb 4, 2022
2 parents e0b4c94 + 949def5 commit 494ec28
Showing 1 changed file with 33 additions and 48 deletions.
81 changes: 33 additions & 48 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,51 +14,36 @@ resources:
name: CadQuery/conda-packages
endpoint: CadQuery

jobs:
- template: conda-build.yml@templates
parameters:
name: Linux_38
vmImage: 'ubuntu-18.04'
py_maj: 3
py_min: 8
conda_bld: 3.21.6

- template: conda-build.yml@templates
parameters:
name: macOS_38
vmImage: 'macOS-10.15'
py_maj: 3
py_min: 8
conda_bld: 3.21.6

- template: conda-build.yml@templates
parameters:
name: Windows_38
vmImage: 'vs2017-win2016'
py_maj: 3
py_min: 8
conda_bld: 3.21.6

- template: conda-build.yml@templates
parameters:
name: Linux_39
vmImage: 'ubuntu-18.04'
py_maj: 3
py_min: 9
conda_bld: 3.21.6

- template: conda-build.yml@templates
parameters:
name: macOS_39
vmImage: 'macOS-10.15'
py_maj: 3
py_min: 9
conda_bld: 3.21.6

- template: conda-build.yml@templates
parameters:
name: Windows_39
vmImage: 'vs2017-win2016'
py_maj: 3
py_min: 9
conda_bld: 3.21.6
parameters:
- name: minor
type: object
default:
- 8
- 9
- 10

jobs:
- ${{ each minor in parameters.minor }}:
- template: conda-build.yml@templates
parameters:
name: Linux
vmImage: 'ubuntu-18.04'
py_maj: 3
py_min: ${{minor}}
conda_bld: 3.21.6

- template: conda-build.yml@templates
parameters:
name: macOS
vmImage: 'macOS-10.15'
py_maj: 3
py_min: ${{minor}}
conda_bld: 3.21.6

- template: conda-build.yml@templates
parameters:
name: Windows
vmImage: 'vs2017-win2016'
py_maj: 3
py_min: ${{minor}}
conda_bld: 3.21.6

0 comments on commit 494ec28

Please sign in to comment.