Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @OutSystems/data-fabric-clients
7 changes: 7 additions & 0 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
mode: Mainline
assembly-versioning-scheme: Major
assembly-file-versioning-scheme: MajorMinorPatch
branches: {}
ignore:
sha: []
merge-message-formats: {}
36 changes: 36 additions & 0 deletions cicd/azure-pipeline-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
trigger:
branches:
include:
- main
paths:
include:
- src
- tests
- build
- .github

pool:
vmImage: 'ubuntu-22.04'

pr: none

variables:
- group: SDLC-SM-HighCode-CI

resources:
repositories:
- repository: rd-ai-azure-pipeline-templates
type: github
ref: refs/tags/v5
name: OutSystems/rd-ai-azure-pipeline-templates
endpoint: OutSystems

jobs:
- template: python/packages/new-azure-pipeline.yml@rd-ai-azure-pipeline-templates
parameters:
PackageName: 'mcp-python-sdk'
SonarCloudProject: 'mcp-python-sdk'
SonarCloudExclusionList: 'tests/**/*'
SonarCloudCoverageExclusionList: "'tests/**/*, local_dev/*'"
SkipIntegrationTests: true
PythonVersion: 3.12
31 changes: 31 additions & 0 deletions cicd/azure-pipeline-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
pr:
paths:
exclude:
- .idea
- docs # Exclude changes to documentation

pool:
vmImage: 'ubuntu-22.04'

trigger: none

variables:
- group: SDLC-SM-HighCode-CI

resources:
repositories:
- repository: rd-ai-azure-pipeline-templates
type: github
ref: refs/tags/v5
name: OutSystems/rd-ai-azure-pipeline-templates
endpoint: OutSystems

jobs:
- template: python/packages/new-azure-pipeline-pr.yml@rd-ai-azure-pipeline-templates
parameters:
PackageName: 'mcp-python-sdk'
SonarCloudProject: 'OutSystems_mcp-python-sdk'
SonarCloudExclusionList: 'tests/**/*'
SonarCloudCoverageExclusionList: "'tests/**/*, local_dev/*'"
SkipIntegrationTests: true
PythonVersion: 3.12
Loading