1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# DO NOT EDIT THIS FILE
# This file is generated automatically and any changes will be lost.
trigger:
branches:
include:
- main
- hotfix/*
- release/*
- restapi*
paths:
include:
- sdk/planetarycomputer/
pr:
branches:
include:
- main
- feature/*
- hotfix/*
- release/*
- restapi*
paths:
include:
- sdk/planetarycomputer/
extends:
template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
ServiceDirectory: planetarycomputer
TestProxy: true
# The job "Test ubuntu2404_pypy39" fails due to nh3 (required by readme_renderer==43.0)
# not being compatible with PyPy 3.9. nh3 requires PyPy 3.11+.
# Using custom matrix to filter out PyPy tests until PyPy is upgraded to 3.11+.
# Tracking issue: #43708
MatrixConfigs:
- Name: planetarycomputer_ci_matrix
Path: sdk/planetarycomputer/platform-matrix.json
Selection: sparse
GenerateVMJobs: true
MatrixFilters:
- PythonVersion=^(?!pypy3).*
Artifacts:
- name: azure-mgmt-planetarycomputer
safeName: azuremgmtplanetarycomputer
- name: azure-planetarycomputer
safeName: azureplanetarycomputer
|