Skip to content

Commit e2c0569

Browse files
move files
1 parent 1b39765 commit e2c0569

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed

cicd/azure-pipeline-merge.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
trigger:
2+
branches:
3+
include:
4+
- main
5+
paths:
6+
include:
7+
- src
8+
- tests
9+
- cicd
10+
- scripts
11+
- .github
12+
13+
pool:
14+
vmImage: 'ubuntu-22.04'
15+
16+
pr: none
17+
18+
variables:
19+
- group: SDLC-SM-HighCode-CI
20+
21+
resources:
22+
repositories:
23+
- repository: rd-ai-azure-pipeline-templates
24+
type: github
25+
ref: refs/tags/v5
26+
name: OutSystems/rd-ai-azure-pipeline-templates
27+
endpoint: OutSystems
28+
29+
jobs:
30+
- template: python/packages/new-azure-pipeline.yml@rd-ai-azure-pipeline-templates
31+
parameters:
32+
PackageName: 'mcp-python-sdk'
33+
SonarCloudProject: 'mcp-python-sdk'
34+
SonarCloudExclusionList: 'tests/**/*'
35+
SonarCloudCoverageExclusionList: "'tests/**/*'"
36+
SkipIntegrationTests: true
37+
PythonVersion: 3.12
38+
PackageManager: "uv"

cicd/azure-pipeline-pr.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
pr:
2+
paths:
3+
exclude:
4+
- .idea
5+
- docs # Exclude changes to documentation
6+
7+
8+
pool:
9+
vmImage: 'ubuntu-22.04'
10+
11+
12+
trigger: none
13+
14+
15+
variables:
16+
- group: SDLC-SM-HighCode-CI
17+
18+
19+
resources:
20+
repositories:
21+
- repository: rd-ai-azure-pipeline-templates
22+
type: github
23+
ref: refs/tags/v5
24+
name: OutSystems/rd-ai-azure-pipeline-templates
25+
endpoint: OutSystems
26+
27+
28+
jobs:
29+
- template: python/packages/new-azure-pipeline-pr.yml@rd-ai-azure-pipeline-templates
30+
parameters:
31+
PackageName: 'mcp-python-sdk'
32+
SonarCloudProject: 'OutSystems_mcp-python-sdk'
33+
SonarCloudExclusionList: 'tests/**/*'
34+
SonarCloudCoverageExclusionList: "'tests/**/*'"
35+
SkipIntegrationTests: true
36+
PythonVersion: 3.12
37+
InstallUV: true
38+
PackageManager: "uv"

0 commit comments

Comments
 (0)