mirror of
https://github.com/jdegenstein/jmwright-CQ-Editor.git
synced 2025-12-19 22:24:19 +01:00
50 lines
869 B
YAML
50 lines
869 B
YAML
trigger:
|
|
branches:
|
|
include:
|
|
- master
|
|
- refs/tags/*
|
|
|
|
pr:
|
|
- master
|
|
|
|
resources:
|
|
repositories:
|
|
- repository: templates
|
|
type: github
|
|
name: jmwright/conda-packages
|
|
endpoint: CadQuery
|
|
|
|
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: 'windows-latest'
|
|
py_maj: 3
|
|
py_min: ${{minor}}
|
|
conda_bld: 3.21.6
|