diff --git a/eng/pipelines/templates/common.yml b/eng/pipelines/templates/common.yml index 876871358..a187ab24d 100644 --- a/eng/pipelines/templates/common.yml +++ b/eng/pipelines/templates/common.yml @@ -8,6 +8,9 @@ parameters: - name: RunLiveTests type: boolean default: false +- name: IncludeNative + type: boolean + default: false - name: ServerName type: string default: none @@ -166,6 +169,7 @@ extends: parameters: VsixTargets: ${{ parameters.VsixTargets }} ServerName: ${{ parameters.ServerName }} + IncludeNative: ${{ parameters.IncludeNative }} - template: /eng/pipelines/templates/jobs/docker.yml parameters: ContainerRegistry: 'azuresdkimages' diff --git a/servers/Azure.Mcp.Server/build.yml b/servers/Azure.Mcp.Server/build.yml index 81353965a..50a66ea14 100644 --- a/servers/Azure.Mcp.Server/build.yml +++ b/servers/Azure.Mcp.Server/build.yml @@ -10,3 +10,4 @@ extends: RunLiveTests: true ReleaseRun: ${{ and(eq(variables['Build.Reason'], 'Manual'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startswith(variables['Build.SourceBranch'], 'refs/heads/hotfix/'))) }} ServerName: Azure.Mcp.Server + IncludeNative: true