diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml index d1d7ae500e53..4e4857ff34f9 100644 --- a/eng/pipelines/aggregate-reports.yml +++ b/eng/pipelines/aggregate-reports.yml @@ -1,13 +1,3 @@ -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: none pr: none diff --git a/eng/pipelines/create-doc-index.yml b/eng/pipelines/create-doc-index.yml index 4cec22966c87..cee745c6343b 100644 --- a/eng/pipelines/create-doc-index.yml +++ b/eng/pipelines/create-doc-index.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - variables: PythonVersion: '3.6' @@ -27,7 +20,7 @@ jobs: inputs: versionSpec: $(PythonVersion) - - template: eng/pipelines/templates/scripts/replace-relative-links.yml@azure-sdk-tools + - template: /eng/common/pipelines/templates/steps/replace-relative-links.yml parameters: TargetFolder: '.' RootFolder: '.' diff --git a/eng/pipelines/generate-all-docs.yml b/eng/pipelines/generate-all-docs.yml index b7537154858b..41092e15476e 100644 --- a/eng/pipelines/generate-all-docs.yml +++ b/eng/pipelines/generate-all-docs.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - variables: PythonVersion: '3.6' diff --git a/eng/pipelines/templates/jobs/archetype-sdk-client.yml b/eng/pipelines/templates/jobs/archetype-sdk-client.yml index cee5e7406355..3435fac571ac 100644 --- a/eng/pipelines/templates/jobs/archetype-sdk-client.yml +++ b/eng/pipelines/templates/jobs/archetype-sdk-client.yml @@ -9,37 +9,31 @@ parameters: BuildDocs: true TestMatrix: Linux_Python27: - OSName: 'Linux' OSVmImage: 'ubuntu-18.04' PythonVersion: '2.7' CoverageArg: '' RunForPR: true Linux_Python35: - OSName: 'Linux' OSVmImage: 'ubuntu-18.04' PythonVersion: '3.5' CoverageArg: '' RunForPR: false Linux_Python38: - OSName: 'Linux' OSVmImage: 'ubuntu-18.04' PythonVersion: '3.8' CoverageArg: '' RunForPR: true Windows_Python35: - OSName: 'Windows' OSVmImage: 'windows-2019' PythonVersion: '3.5' CoverageArg: '' RunForPR: true MacOS_Python27: - OSName: 'MacOS' OSVmImage: 'macOS-10.15' PythonVersion: '2.7' CoverageArg: '' RunForPR: false Linux_pypy3: - OSName: 'Linux' OSVmImage: 'ubuntu-18.04' PythonVersion: 'pypy3' CoverageArg: '--disablecov' @@ -117,7 +111,7 @@ jobs: ServiceDirectory: ${{ parameters.ServiceDirectory }} TestMarkArgument: ${{ parameters.TestMarkArgument }} AdditionalTestArgs: '--wheel_dir="$(Build.ArtifactStagingDirectory)"' - OSName: $(OSName) + OSVmImage: $(OSVmImage) CoverageArg: $(CoverageArg) PythonVersion: $(PythonVersion) BuildTargetingString: ${{ parameters.BuildTargetingString }} diff --git a/eng/pipelines/templates/jobs/archetype-sdk-tests.yml b/eng/pipelines/templates/jobs/archetype-sdk-tests.yml index eec88889e0a8..299e0c7fca6e 100644 --- a/eng/pipelines/templates/jobs/archetype-sdk-tests.yml +++ b/eng/pipelines/templates/jobs/archetype-sdk-tests.yml @@ -14,23 +14,18 @@ parameters: TestTimeoutInMinutes: 120 Matrix: Linux_Python35: - OSName: 'Linux' OSVmImage: 'ubuntu-18.04' PythonVersion: '3.5' MacOs_Python37: - OSName: 'MacOS' OSVmImage: 'macOS-10.15' PythonVersion: '3.7' Windows_Python27: - OSName: 'Windows' OSVmImage: 'windows-2019' PythonVersion: '2.7' Linux_PyPy3: - OSName: 'Linux' OSVmImage: 'ubuntu-18.04' PythonVersion: 'pypy3' Linux_Python38: - OSName: 'Linux' OSVmImage: 'ubuntu-18.04' PythonVersion: '3.8' @@ -78,7 +73,7 @@ jobs: BeforeTestSteps: ${{ parameters.BeforeTestSteps }} AfterTestSteps: ${{ parameters.AfterTestSteps }} PythonVersion: $(PythonVersion) - OSName: $(OSName) + OSVmImage: $(OSVmImage) ToxTestEnv: "whl" AdditionalTestArgs: ${{ parameters.AdditionalTestArgs }} TestMarkArgument: ${{ parameters.TestMarkArgument }} diff --git a/eng/pipelines/templates/stages/archetype-sdk-client.yml b/eng/pipelines/templates/stages/archetype-sdk-client.yml index aaf3e3809a99..2448e8556e63 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client.yml @@ -1,12 +1,38 @@ +resources: + repositories: + - repository: azure-sdk-tools + type: github + name: azure/azure-sdk-tools + endpoint: azure + ref: refs/tags/azure-sdk-tools_20200608.1 + - repository: azure-sdk-build-tools + type: git + name: internal/azure-sdk-build-tools + ref: refs/tags/azure-sdk-build-tools_20200514.1 + parameters: - Artifacts: [] - ServiceDirectory: not-specified - ToxEnvParallel: '--tenvparallel' - InjectedPackages: '' - BuildDocs: true - TargetDocRepoOwner: 'MicrosoftDocs' - TargetDocRepoName: 'azure-docs-sdk-python' - +- name: Artifacts + type: object + default: [] +- name: ServiceDirectory + type: string + default: not-specified +- name: ToxEnvParallel + type: string + default: --tenvparallel +- name: InjectedPackages + type: string + default: '' +- name: BuildDocs + type: boolean + default: true +- name: TargetDocRepoOwner + type: string + default: MicrosoftDocs +- name: TargetDocRepoName + type: string + default: azure-docs-sdk-python + stages: - stage: Build jobs: diff --git a/eng/pipelines/templates/stages/cosmos-sdk-client.yml b/eng/pipelines/templates/stages/cosmos-sdk-client.yml index 6a49134d95ea..90b200f20c94 100644 --- a/eng/pipelines/templates/stages/cosmos-sdk-client.yml +++ b/eng/pipelines/templates/stages/cosmos-sdk-client.yml @@ -1,10 +1,34 @@ +resources: + repositories: + - repository: azure-sdk-tools + type: github + name: azure/azure-sdk-tools + endpoint: azure + ref: refs/tags/azure-sdk-tools_20200608.1 + - repository: azure-sdk-build-tools + type: git + name: internal/azure-sdk-build-tools + ref: refs/tags/azure-sdk-build-tools_20200514.1 + parameters: - Artifacts: [] - ServiceDirectory: not-specified - EmulatorMsiUrl: 'https://aka.ms/cosmosdb-emulator' - EmulatorStartParameters: '' - InjectedPackages: '' - BuildDocs: true +- name: Artifacts + type: object + default: [] +- name: ServiceDirectory + type: string + default: not-specified +- name: EmulatorMsiUrl + type: string + default: https://aka.ms/cosmosdb-emulator +- name: InjectedPackages + type: string + default: '' +- name: BuildDocs + type: boolean + default: true +- name: EmulatorStartParameters + type: string + default: '' stages: - stage: Build @@ -21,11 +45,9 @@ stages: matrix: Windows_Python35: OSVmImage: 'windows-2019' - OSName: Windows PythonVersion: '3.5' Windows_Python27: OSVmImage: 'windows-2019' - OSName: Windows PythonVersion: '2.7' pool: vmImage: $(OSVmImage) @@ -43,14 +65,14 @@ stages: ACCOUNT_HOST: https://localhost:8081/ ServiceDirectory: ${{ parameters.ServiceDirectory }} PythonVersion: $(PythonVersion) - OSName: $(OSName) + OSVmImage: $(OSVmImage) ToxTestEnv: 'whl,sdist' BuildDocs: ${{parameters.BuildDocs}} InjectedPackages: ${{parameters.InjectedPackages}} # The Prerelease and Release stages are conditioned on whether we are building a pull request and the branch. - ${{if and(ne(variables['Build.Reason'], 'PullRequest'), eq(variables['System.TeamProject'], 'internal'))}}: - - template: pipelines/stages/archetype-python-release.yml@azure-sdk-build-tools + - template: archetype-python-release.yml parameters: DependsOn: Build ServiceDirectory: ${{parameters.ServiceDirectory}} diff --git a/eng/pipelines/templates/steps/analyze.yml b/eng/pipelines/templates/steps/analyze.yml index 488b6deca368..f5cb197386b7 100644 --- a/eng/pipelines/templates/steps/analyze.yml +++ b/eng/pipelines/templates/steps/analyze.yml @@ -41,7 +41,7 @@ steps: python find_invalid_versions.py --always-succeed --service=${{parameters.ServiceDirectory}} displayName: Find Invalid Versions - - template: eng/pipelines/templates/scripts/verify-path-length.yml@azure-sdk-tools + - template: /eng/common/pipelines/templates/steps/verify-path-length.yml parameters: SourceDirectory: $(Build.SourcesDirectory) diff --git a/eng/pipelines/templates/steps/build-artifacts.yml b/eng/pipelines/templates/steps/build-artifacts.yml index d2ba890f177a..23419302a11f 100644 --- a/eng/pipelines/templates/steps/build-artifacts.yml +++ b/eng/pipelines/templates/steps/build-artifacts.yml @@ -19,7 +19,7 @@ steps: pip install -r eng/ci_tools.txt displayName: 'Prep Py2 Environment' - - template: eng/pipelines/templates/scripts/replace-relative-links.yml@azure-sdk-tools + - template: /eng/common/pipelines/templates/steps/replace-relative-links.yml parameters: TargetFolder: $(Build.SourcesDirectory) RootFolder: $(Build.SourcesDirectory) diff --git a/eng/pipelines/templates/steps/build-test.yml b/eng/pipelines/templates/steps/build-test.yml index 3cb09cfb3c8e..bc8451d96b5e 100644 --- a/eng/pipelines/templates/steps/build-test.yml +++ b/eng/pipelines/templates/steps/build-test.yml @@ -4,7 +4,7 @@ parameters: EnvVars: {} ServiceDirectory: '' PythonVersion: '' - OSName: '' + OSVmImage: '' BeforeTestSteps: [] AfterTestSteps: [] CoverageArg: '' @@ -23,9 +23,7 @@ steps: inputs: versionSpec: '${{ parameters.PythonVersion }}' - - template: eng/pipelines/templates/scripts/verify-agent-os.yml@azure-sdk-tools - parameters: - OSName: ${{ parameters.OSName }} + - template: /eng/common/pipelines/templates/steps/verify-agent-os.yml - script: | python -m pip install pip == 20.1 @@ -56,7 +54,7 @@ steps: condition: always() inputs: testResultsFiles: '**/*test*.xml' - testRunTitle: '${{ parameters.OSName }} Python ${{ parameters.PythonVersion }}' + testRunTitle: '$(OSName) Python ${{ parameters.PythonVersion }}' failTaskOnFailedTests: true - template: publish-coverage.yml diff --git a/eng/pipelines/test-all.yml b/eng/pipelines/test-all.yml index 2583ae8edf68..a922c84e1a4b 100644 --- a/eng/pipelines/test-all.yml +++ b/eng/pipelines/test-all.yml @@ -1,13 +1,3 @@ -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: none pr: none diff --git a/sdk/advisor/ci.yml b/sdk/advisor/ci.yml index 6d3981b5d751..73a61c30332b 100644 --- a/sdk/advisor/ci.yml +++ b/sdk/advisor/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/advisor/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: advisor Artifacts: - name: azure_mgmt_advisor - safeName: azuremgmtadvisor + safeName: azuremgmtadvisor \ No newline at end of file diff --git a/sdk/aks/ci.yml b/sdk/aks/ci.yml index 5b8f7109b234..f5b46456d933 100644 --- a/sdk/aks/ci.yml +++ b/sdk/aks/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/aks/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: aks Artifacts: - name: azure_mgmt_devspaces - safeName: azuremgmtdevspaces + safeName: azuremgmtdevspaces \ No newline at end of file diff --git a/sdk/alertsmanagement/ci.yml b/sdk/alertsmanagement/ci.yml index 5d0e288b3a24..4e437dbbd693 100644 --- a/sdk/alertsmanagement/ci.yml +++ b/sdk/alertsmanagement/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/alertsmanagement/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: alertsmanagement Artifacts: - name: azure_mgmt_alertsmanagement - safeName: azuremgmtalertsmanagement + safeName: azuremgmtalertsmanagement \ No newline at end of file diff --git a/sdk/apimanagement/ci.yml b/sdk/apimanagement/ci.yml index 530b166360d2..3f652728468b 100644 --- a/sdk/apimanagement/ci.yml +++ b/sdk/apimanagement/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/apimanagement/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: apimanagement Artifacts: - name: azure_mgmt_apimanagement - safeName: azuremgmtapimanagement + safeName: azuremgmtapimanagement \ No newline at end of file diff --git a/sdk/appconfiguration/ci.yml b/sdk/appconfiguration/ci.yml index 719da686b9b9..722225334380 100644 --- a/sdk/appconfiguration/ci.yml +++ b/sdk/appconfiguration/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -40,12 +30,12 @@ pr: - tools/ - eng/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: appconfiguration Artifacts: - name: azure_appconfiguration safeName: azureappconfiguration - name: azure_mgmt_appconfiguration - safeName: azuremgmtappconfiguration + safeName: azuremgmtappconfiguration \ No newline at end of file diff --git a/sdk/appconfiguration/tests.yml b/sdk/appconfiguration/tests.yml index ecf8ac8a85eb..6c26e7c601b4 100644 --- a/sdk/appconfiguration/tests.yml +++ b/sdk/appconfiguration/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/applicationinsights/ci.yml b/sdk/applicationinsights/ci.yml index 4a163dab8d44..1ebba80507a1 100644 --- a/sdk/applicationinsights/ci.yml +++ b/sdk/applicationinsights/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,9 +24,8 @@ pr: include: - sdk/applicationinsights/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: applicationinsights Artifacts: diff --git a/sdk/appservice/ci.yml b/sdk/appservice/ci.yml index 207b66d86b97..42e7dfd6b4a2 100644 --- a/sdk/appservice/ci.yml +++ b/sdk/appservice/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/appservice/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: appservice Artifacts: - name: azure_mgmt_web - safeName: azuremgmtweb + safeName: azuremgmtweb \ No newline at end of file diff --git a/sdk/attestation/ci.yml b/sdk/attestation/ci.yml index a042e37a3666..3874e7c9259c 100644 --- a/sdk/attestation/ci.yml +++ b/sdk/attestation/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/attestation/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: attestation Artifacts: - name: azure_mgmt_attestation - safeName: azuremgmtattestation + safeName: azuremgmtattestation \ No newline at end of file diff --git a/sdk/authorization/ci.yml b/sdk/authorization/ci.yml index 1186df03c2b0..86362cc85281 100644 --- a/sdk/authorization/ci.yml +++ b/sdk/authorization/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/authorization/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: authorization Artifacts: - name: azure_mgmt_authorization - safeName: azuremgmtauthorization + safeName: azuremgmtauthorization \ No newline at end of file diff --git a/sdk/automation/ci.yml b/sdk/automation/ci.yml index 513369de5323..1d46dbb541dc 100644 --- a/sdk/automation/ci.yml +++ b/sdk/automation/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/automation/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: automation Artifacts: - name: azure_mgmt_automation - safeName: azuremgmtautomation + safeName: azuremgmtautomation \ No newline at end of file diff --git a/sdk/azurestack/ci.yml b/sdk/azurestack/ci.yml index 5636d06dc153..f34d3623f88c 100644 --- a/sdk/azurestack/ci.yml +++ b/sdk/azurestack/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/azurestack/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: azurestack Artifacts: - name: azure_mgmt_azurestack - safeName: azuremgmtazurestack + safeName: azuremgmtazurestack \ No newline at end of file diff --git a/sdk/batch/ci.yml b/sdk/batch/ci.yml index 2d2badd980f4..64c476bad2d6 100644 --- a/sdk/batch/ci.yml +++ b/sdk/batch/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/batch/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: batch Artifacts: - name: azure_mgmt_batch safeName: azuremgmtbatch - name: azure_batch - safeName: azurebatch + safeName: azurebatch \ No newline at end of file diff --git a/sdk/billing/ci.yml b/sdk/billing/ci.yml index af8476b87f70..eb74f53a5d52 100644 --- a/sdk/billing/ci.yml +++ b/sdk/billing/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/billing/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: billing Artifacts: - name: azure_mgmt_billing - safeName: azuremgmtbilling + safeName: azuremgmtbilling \ No newline at end of file diff --git a/sdk/botservice/ci.yml b/sdk/botservice/ci.yml index a18ea37e046f..a6f4b76d8389 100644 --- a/sdk/botservice/ci.yml +++ b/sdk/botservice/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/botservice/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: botservice Artifacts: - name: azure_mgmt_botservice - safeName: azuremgmtbotservice + safeName: azuremgmtbotservice \ No newline at end of file diff --git a/sdk/cdn/ci.yml b/sdk/cdn/ci.yml index 5ae819e8737b..0ba4721f286e 100644 --- a/sdk/cdn/ci.yml +++ b/sdk/cdn/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/cdn/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: cdn Artifacts: - name: azure_mgmt_cdn - safeName: azuremgmtcdn + safeName: azuremgmtcdn \ No newline at end of file diff --git a/sdk/cognitiveservices/ci.yml b/sdk/cognitiveservices/ci.yml index b11de11a2736..ed18c333acba 100644 --- a/sdk/cognitiveservices/ci.yml +++ b/sdk/cognitiveservices/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,12 +24,10 @@ pr: include: - sdk/cognitiveservices/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: cognitiveservices - TestTimeoutInMinutes: 75 Artifacts: - name: azure_cognitiveservices_anomalydetector safeName: azurecognitiveservicesanomalydetector @@ -88,4 +76,4 @@ stages: - name: azure_cognitiveservices_vision_face safeName: azurecognitiveservicesvisionface - name: azure_mgmt_cognitiveservices - safeName: azuremgmtcognitiveservices + safeName: azuremgmtcognitiveservices \ No newline at end of file diff --git a/sdk/commerce/ci.yml b/sdk/commerce/ci.yml index bdbcefd6f296..359652cd14ee 100644 --- a/sdk/commerce/ci.yml +++ b/sdk/commerce/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/commerce/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: commerce Artifacts: - name: azure_mgmt_commerce - safeName: azuremgmtcommerce + safeName: azuremgmtcommerce \ No newline at end of file diff --git a/sdk/compute/ci.yml b/sdk/compute/ci.yml index 8706b1f9fd35..152fbcd9f428 100644 --- a/sdk/compute/ci.yml +++ b/sdk/compute/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/compute/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: compute Artifacts: - name: azure_mgmt_compute safeName: azuremgmtcompute - name: azure_mgmt_imagebuilder - safeName: azuremgmtimagebuilder + safeName: azuremgmtimagebuilder \ No newline at end of file diff --git a/sdk/consumption/ci.yml b/sdk/consumption/ci.yml index 0ff48af17b7f..9dbf6fee08d8 100644 --- a/sdk/consumption/ci.yml +++ b/sdk/consumption/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/consumption/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: consumption Artifacts: - name: azure_mgmt_consumption - safeName: azuremgmtconsumption + safeName: azuremgmtconsumption \ No newline at end of file diff --git a/sdk/containerinstance/ci.yml b/sdk/containerinstance/ci.yml index ec4a4eacecb0..22cf24aa2174 100644 --- a/sdk/containerinstance/ci.yml +++ b/sdk/containerinstance/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/containerinstance/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: containerinstance Artifacts: - name: azure_mgmt_containerinstance - safeName: azuremgmtcontainerinstance + safeName: azuremgmtcontainerinstance \ No newline at end of file diff --git a/sdk/containerregistry/ci.yml b/sdk/containerregistry/ci.yml index 34695c19c6b7..e842532e182b 100644 --- a/sdk/containerregistry/ci.yml +++ b/sdk/containerregistry/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/containerregistry/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: containerregistry Artifacts: - name: azure_mgmt_containerregistry - safeName: azuremgmtcontainerregistry + safeName: azuremgmtcontainerregistry \ No newline at end of file diff --git a/sdk/containerservice/ci.yml b/sdk/containerservice/ci.yml index 00cc610a9414..c8de7f67cf30 100644 --- a/sdk/containerservice/ci.yml +++ b/sdk/containerservice/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/containerservice/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: containerservice Artifacts: - name: azure_mgmt_containerservice - safeName: azuremgmtcontainerservice + safeName: azuremgmtcontainerservice \ No newline at end of file diff --git a/sdk/core/ci.yml b/sdk/core/ci.yml index 7659e7f57e64..3ae71b2b6598 100644 --- a/sdk/core/ci.yml +++ b/sdk/core/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -38,8 +28,8 @@ pr: - eng/ - tools/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: core Artifacts: @@ -52,4 +42,4 @@ stages: - name: azure_core_tracing_opentelemetry safeName: azurecorecoretracingtelemetry - name: azure_common - safeName: azurecommon + safeName: azurecommon \ No newline at end of file diff --git a/sdk/cosmos/ci.yml b/sdk/cosmos/ci.yml index 26cd7c28e6e6..8b195555844b 100644 --- a/sdk/cosmos/ci.yml +++ b/sdk/cosmos/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -36,13 +26,12 @@ pr: - sdk/cosmos/ - sdk/core/ -stages: -- template: ../../eng/pipelines/templates/stages/cosmos-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/cosmos-sdk-client.yml parameters: ServiceDirectory: cosmos Artifacts: - name: azure_cosmos safeName: azurecosmos - name: azure_mgmt_cosmosdb - safeName: azuremgmtcosmosdb - + safeName: azuremgmtcosmosdb \ No newline at end of file diff --git a/sdk/cosmos/tests.yml b/sdk/cosmos/tests.yml index 296c03ceb432..118af435beb2 100644 --- a/sdk/cosmos/tests.yml +++ b/sdk/cosmos/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/costmanagement/ci.yml b/sdk/costmanagement/ci.yml index d570a3927c00..dfdc78353159 100644 --- a/sdk/costmanagement/ci.yml +++ b/sdk/costmanagement/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,9 +24,8 @@ pr: include: - sdk/costmanagement/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: costmanagement Artifacts: diff --git a/sdk/customproviders/ci.yml b/sdk/customproviders/ci.yml index 2a44c5910086..fcc43213231c 100644 --- a/sdk/customproviders/ci.yml +++ b/sdk/customproviders/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/customproviders/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: customproviders Artifacts: - name: azure_mgmt_customproviders - safeName: azuremgmtcustomproviders + safeName: azuremgmtcustomproviders \ No newline at end of file diff --git a/sdk/databox/ci.yml b/sdk/databox/ci.yml index 48c2853338f3..732c6fa933fd 100644 --- a/sdk/databox/ci.yml +++ b/sdk/databox/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/databox/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: databox Artifacts: - name: azure_mgmt_databox - safeName: azuremgmtdatabox + safeName: azuremgmtdatabox \ No newline at end of file diff --git a/sdk/databoxedge/ci.yml b/sdk/databoxedge/ci.yml index d082981a73b6..3f2a4d183443 100644 --- a/sdk/databoxedge/ci.yml +++ b/sdk/databoxedge/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/databoxedge/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: databoxedge Artifacts: - name: azure_mgmt_databoxedge - safeName: azuremgmtdataboxedge + safeName: azuremgmtdataboxedge \ No newline at end of file diff --git a/sdk/databricks/ci.yml b/sdk/databricks/ci.yml index d87dccec2c77..8384153fa15e 100644 --- a/sdk/databricks/ci.yml +++ b/sdk/databricks/ci.yml @@ -1,16 +1,5 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. - -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +23,10 @@ pr: include: - sdk/databricks/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: databricks Artifacts: - name: azure_mgmt_databricks - safeName: azuremgmtdatabricks + safeName: azuremgmtdatabricks \ No newline at end of file diff --git a/sdk/datafactory/ci.yml b/sdk/datafactory/ci.yml index 8cbec67208e4..038a4c70027b 100644 --- a/sdk/datafactory/ci.yml +++ b/sdk/datafactory/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/datafactory/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: datafactory Artifacts: - name: azure_mgmt_datafactory - safeName: azuremgmtdatafactory + safeName: azuremgmtdatafactory \ No newline at end of file diff --git a/sdk/datalake/ci.yml b/sdk/datalake/ci.yml index be102ab218f0..eb41659fc32a 100644 --- a/sdk/datalake/ci.yml +++ b/sdk/datalake/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/datalake/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: datalake Artifacts: - name: azure_mgmt_datalake_analytics safeName: azuremgmtdatalakeanalytics - name: azure_mgmt_datalake_store - safeName: azuremgmtdatalakestore + safeName: azuremgmtdatalakestore \ No newline at end of file diff --git a/sdk/datamigration/ci.yml b/sdk/datamigration/ci.yml index ff2a3f9f4b78..6fac5f9a9222 100644 --- a/sdk/datamigration/ci.yml +++ b/sdk/datamigration/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/datamigration/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: datamigration Artifacts: - name: azure_mgmt_datamigration - safeName: azuremgmtdatamigration + safeName: azuremgmtdatamigration \ No newline at end of file diff --git a/sdk/datashare/ci.yml b/sdk/datashare/ci.yml index 11272ccb4a01..ffef09f9c328 100644 --- a/sdk/datashare/ci.yml +++ b/sdk/datashare/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/datashare/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: datashare Artifacts: - name: azure_mgmt_datashare - safeName: azuremgmtdatashare + safeName: azuremgmtdatashare \ No newline at end of file diff --git a/sdk/deploymentmanager/ci.yml b/sdk/deploymentmanager/ci.yml index aecebd0303ed..6c84822f7176 100644 --- a/sdk/deploymentmanager/ci.yml +++ b/sdk/deploymentmanager/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/deploymentmanager/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: deploymentmanager Artifacts: - name: azure_mgmt_deploymentmanager - safeName: azuremgmtdeploymentmanager + safeName: azuremgmtdeploymentmanager \ No newline at end of file diff --git a/sdk/devtestlabs/ci.yml b/sdk/devtestlabs/ci.yml index 29b4c9be6e9a..7ab1586304e0 100644 --- a/sdk/devtestlabs/ci.yml +++ b/sdk/devtestlabs/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/devtestlabs/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: devtestlabs Artifacts: - name: azure_mgmt_devtestlabs - safeName: azuremgmtdevtestlabs + safeName: azuremgmtdevtestlabs \ No newline at end of file diff --git a/sdk/digitaltwins/ci.yml b/sdk/digitaltwins/ci.yml index 3730cdd92d2d..0b73eac0d8ff 100644 --- a/sdk/digitaltwins/ci.yml +++ b/sdk/digitaltwins/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,8 +24,8 @@ pr: include: - sdk/digitaltwins/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: digitaltwins Artifacts: diff --git a/sdk/edgegateway/ci.yml b/sdk/edgegateway/ci.yml index 4c2277701069..c0c43c3b9edb 100644 --- a/sdk/edgegateway/ci.yml +++ b/sdk/edgegateway/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/edgegateway/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: edgegateway Artifacts: - name: azure_mgmt_edgegateway - safeName: azuremgmtedgegateway + safeName: azuremgmtedgegateway \ No newline at end of file diff --git a/sdk/eventgrid/ci.yml b/sdk/eventgrid/ci.yml index 61ba465db6f5..847f719bf461 100644 --- a/sdk/eventgrid/ci.yml +++ b/sdk/eventgrid/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/eventgrid/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: eventgrid Artifacts: - name: azure_mgmt_eventgrid safeName: azuremgmteventgrid - name: azure_eventgrid - safeName: azureeventgrid + safeName: azureeventgrid \ No newline at end of file diff --git a/sdk/eventhub/ci.yml b/sdk/eventhub/ci.yml index e6ecca083d8b..f9fdb12f6570 100644 --- a/sdk/eventhub/ci.yml +++ b/sdk/eventhub/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -40,8 +30,8 @@ pr: - tools/ - eng/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: eventhub Artifacts: @@ -52,4 +42,4 @@ stages: - name: azure_eventhub_checkpointstoreblob safeName: azureeventhubcheckpointstoreblob - name: azure_mgmt_eventhub - safeName: azuremgmteventhub + safeName: azuremgmteventhub \ No newline at end of file diff --git a/sdk/eventhub/tests.yml b/sdk/eventhub/tests.yml index c05b7dbfdbf7..f477687d51bd 100644 --- a/sdk/eventhub/tests.yml +++ b/sdk/eventhub/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/formrecognizer/ci.yml b/sdk/formrecognizer/ci.yml index 626e6596da66..753e32769a71 100644 --- a/sdk/formrecognizer/ci.yml +++ b/sdk/formrecognizer/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -35,10 +25,10 @@ pr: - sdk/formrecognizer/ - sdk/core/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: formrecognizer Artifacts: - name: azure_ai_formrecognizer - safeName: azureaiformrecognizer + safeName: azureaiformrecognizer \ No newline at end of file diff --git a/sdk/formrecognizer/tests.yml b/sdk/formrecognizer/tests.yml index 469c88f32d93..be3edca8674d 100644 --- a/sdk/formrecognizer/tests.yml +++ b/sdk/formrecognizer/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/graphrbac/ci.yml b/sdk/graphrbac/ci.yml index c89262178cf7..c893a7672c36 100644 --- a/sdk/graphrbac/ci.yml +++ b/sdk/graphrbac/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/graphrbac/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: graphrbac Artifacts: - name: azure_graphrbac - safeName: azuregraphrbac + safeName: azuregraphrbac \ No newline at end of file diff --git a/sdk/hanaonazure/ci.yml b/sdk/hanaonazure/ci.yml index ed538c0d5276..e1f3137a0b83 100644 --- a/sdk/hanaonazure/ci.yml +++ b/sdk/hanaonazure/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,9 +24,8 @@ pr: include: - sdk/hanaonazure/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: hanaonazure Artifacts: diff --git a/sdk/hdinsight/ci.yml b/sdk/hdinsight/ci.yml index f60cee565f7a..2c32dc8a8844 100644 --- a/sdk/hdinsight/ci.yml +++ b/sdk/hdinsight/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/hdinsight/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: hdinsight Artifacts: - name: azure_mgmt_hdinsight - safeName: azuremgmthdinsight + safeName: azuremgmthdinsight \ No newline at end of file diff --git a/sdk/healthcareapis/ci.yml b/sdk/healthcareapis/ci.yml index aa101785e04e..93c23b977582 100644 --- a/sdk/healthcareapis/ci.yml +++ b/sdk/healthcareapis/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/healthcareapis/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: healthcareapis Artifacts: - name: azure_mgmt_healthcareapis - safeName: azuremgmthealthcareapis + safeName: azuremgmthealthcareapis \ No newline at end of file diff --git a/sdk/hybridkubernetes/ci.yml b/sdk/hybridkubernetes/ci.yml index 7256e4277250..b7069a5772bb 100644 --- a/sdk/hybridkubernetes/ci.yml +++ b/sdk/hybridkubernetes/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/hybridkubernetes/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: hybridkubernetes Artifacts: - name: azure_mgmt_hybridkubernetes - safeName: azuremgmthybridkubernetes + safeName: azuremgmthybridkubernetes \ No newline at end of file diff --git a/sdk/identity/ci.yml b/sdk/identity/ci.yml index d87cc09e1f20..a9df489c60d5 100644 --- a/sdk/identity/ci.yml +++ b/sdk/identity/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -36,10 +26,10 @@ pr: - sdk/identity/ - sdk/core/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: identity Artifacts: - name: azure_identity - safeName: azureidentity + safeName: azureidentity \ No newline at end of file diff --git a/sdk/identity/tests.yml b/sdk/identity/tests.yml index 573cd11d4b52..506f98ab8739 100644 --- a/sdk/identity/tests.yml +++ b/sdk/identity/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/iothub/ci.yml b/sdk/iothub/ci.yml index 5cca655270e6..dcd21b01b2b9 100644 --- a/sdk/iothub/ci.yml +++ b/sdk/iothub/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,9 +24,8 @@ pr: include: - sdk/iothub/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: iothub Artifacts: @@ -45,5 +34,4 @@ stages: - name: azure_mgmt_iothubprovisioningservices safeName: azuremgmtiothubprovisioningservices - name: azure_mgmt_iotcentral - safeName: azuremgmtiotcentral - + safeName: azuremgmtiotcentral \ No newline at end of file diff --git a/sdk/keyvault/ci.yml b/sdk/keyvault/ci.yml index cf3b0972cf69..395b8c414d2e 100644 --- a/sdk/keyvault/ci.yml +++ b/sdk/keyvault/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -40,8 +30,8 @@ pr: - tools/ - eng/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: keyvault Artifacts: @@ -54,4 +44,4 @@ stages: - name: azure_mgmt_keyvault safeName: azuremgmtkeyvault - name: azure_keyvault - safeName: azurekeyvault + safeName: azurekeyvault \ No newline at end of file diff --git a/sdk/keyvault/tests.yml b/sdk/keyvault/tests.yml index 941d0e03d119..ce281c725734 100644 --- a/sdk/keyvault/tests.yml +++ b/sdk/keyvault/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/kubernetesconfiguration/ci.yml b/sdk/kubernetesconfiguration/ci.yml index 03ea760686a2..790a2cac9ca3 100644 --- a/sdk/kubernetesconfiguration/ci.yml +++ b/sdk/kubernetesconfiguration/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/kubernetesconfiguration/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: kubernetesconfiguration Artifacts: - name: azure_mgmt_kubernetesconfiguration - safeName: azuremgmtkubernetesconfiguration + safeName: azuremgmtkubernetesconfiguration \ No newline at end of file diff --git a/sdk/kusto/ci.yml b/sdk/kusto/ci.yml index 33bf0b97d799..ed6c04fb92a2 100644 --- a/sdk/kusto/ci.yml +++ b/sdk/kusto/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,10 +24,10 @@ pr: include: - sdk/kusto/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: kusto Artifacts: - name: azure_mgmt_kusto - safeName: azuremgmtkusto + safeName: azuremgmtkusto \ No newline at end of file diff --git a/sdk/labservices/ci.yml b/sdk/labservices/ci.yml index fe1dcb841f58..566a1443acf1 100644 --- a/sdk/labservices/ci.yml +++ b/sdk/labservices/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,10 +24,10 @@ pr: include: - sdk/labservices/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: labservices Artifacts: - name: azure_mgmt_labservices - safeName: azuremgmtlabservices + safeName: azuremgmtlabservices \ No newline at end of file diff --git a/sdk/loganalytics/ci.yml b/sdk/loganalytics/ci.yml index 6690a7613115..cea2a17237f2 100644 --- a/sdk/loganalytics/ci.yml +++ b/sdk/loganalytics/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,12 +24,12 @@ pr: include: - sdk/loganalytics/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: loganalytics Artifacts: - name: azure_loganalytics safeName: azureloganalytics - name: azure_mgmt_loganalytics - safeName: azuremgmtloganalytics + safeName: azuremgmtloganalytics \ No newline at end of file diff --git a/sdk/logic/ci.yml b/sdk/logic/ci.yml index e3bcd0f2a5d4..675caf9b6a9c 100644 --- a/sdk/logic/ci.yml +++ b/sdk/logic/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,10 +24,10 @@ pr: include: - sdk/logic/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: logic Artifacts: - name: azure_mgmt_logic - safeName: azuremgmtlogic + safeName: azuremgmtlogic \ No newline at end of file diff --git a/sdk/machinelearning/ci.yml b/sdk/machinelearning/ci.yml index c19490f8bc11..261da6258d67 100644 --- a/sdk/machinelearning/ci.yml +++ b/sdk/machinelearning/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/machinelearning/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: machinelearning Artifacts: - name: azure_mgmt_machinelearningcompute safeName: azuremgmtmachinelearningcompute - name: azure_mgmt_machinelearningservices - safeName: azuremgmtmachinelearningservices - + safeName: azuremgmtmachinelearningservices \ No newline at end of file diff --git a/sdk/maintenance/ci.yml b/sdk/maintenance/ci.yml index dc9d3e07f6bb..2964325cd1fb 100644 --- a/sdk/maintenance/ci.yml +++ b/sdk/maintenance/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,10 +24,10 @@ pr: include: - sdk/maintenance/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: maintenance Artifacts: - name: azure_mgmt_maintenance - safeName: azuremgmtmaintenance + safeName: azuremgmtmaintenance \ No newline at end of file diff --git a/sdk/managedservices/ci.yml b/sdk/managedservices/ci.yml index a96b062e63ea..61cf334ddb70 100644 --- a/sdk/managedservices/ci.yml +++ b/sdk/managedservices/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/managedservices/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: managedservices Artifacts: - name: azure_mgmt_managedservices - safeName: azuremgmtmanagedservices - + safeName: azuremgmtmanagedservices \ No newline at end of file diff --git a/sdk/managementgroups/ci.yml b/sdk/managementgroups/ci.yml index 5bd03ecd9fce..80db2bfdd34d 100644 --- a/sdk/managementgroups/ci.yml +++ b/sdk/managementgroups/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/managementgroups/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: managementgroups Artifacts: - name: azure_mgmt_managementgroups - safeName: azuremgmtmanagementgroups - + safeName: azuremgmtmanagementgroups \ No newline at end of file diff --git a/sdk/managementpartner/ci.yml b/sdk/managementpartner/ci.yml index 3fd92e4ced71..7db968619ef1 100644 --- a/sdk/managementpartner/ci.yml +++ b/sdk/managementpartner/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/managementpartner/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: managementpartner Artifacts: - name: azure_mgmt_managementpartner - safeName: azuremgmtmanagementpartner - + safeName: azuremgmtmanagementpartner \ No newline at end of file diff --git a/sdk/maps/ci.yml b/sdk/maps/ci.yml index 6f3b222a18eb..a21a23435479 100644 --- a/sdk/maps/ci.yml +++ b/sdk/maps/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/maps/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: maps Artifacts: - name: azure_mgmt_maps safeName: azuremgmtmaps - diff --git a/sdk/marketplaceordering/ci.yml b/sdk/marketplaceordering/ci.yml index 19b302b51e6f..453c01d454c2 100644 --- a/sdk/marketplaceordering/ci.yml +++ b/sdk/marketplaceordering/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/marketplaceordering/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: marketplaceordering Artifacts: - name: azure_mgmt_marketplaceordering - safeName: azuremgmtmarketplaceordering - + safeName: azuremgmtmarketplaceordering \ No newline at end of file diff --git a/sdk/media/ci.yml b/sdk/media/ci.yml index f45f52303117..0c6bd6fb9658 100644 --- a/sdk/media/ci.yml +++ b/sdk/media/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/media/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: media Artifacts: - name: azure_mgmt_media - safeName: azuremgmtmedia - + safeName: azuremgmtmedia \ No newline at end of file diff --git a/sdk/mixedreality/ci.yml b/sdk/mixedreality/ci.yml index 65ddcb6bebef..417465bcec34 100644 --- a/sdk/mixedreality/ci.yml +++ b/sdk/mixedreality/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/mixedreality/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: mixedreality Artifacts: - name: azure_mgmt_mixedreality safeName: azuremgmtmixedreality - diff --git a/sdk/monitor/ci.yml b/sdk/monitor/ci.yml index cb60905a104d..75d96ca76af1 100644 --- a/sdk/monitor/ci.yml +++ b/sdk/monitor/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/monitor/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: monitor Artifacts: - name: azure_mgmt_monitor safeName: azuremgmtmonitor - diff --git a/sdk/netapp/ci.yml b/sdk/netapp/ci.yml index 313b132ace4f..1c9b7da7cfa7 100644 --- a/sdk/netapp/ci.yml +++ b/sdk/netapp/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/netapp/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: netapp Artifacts: - name: azure_mgmt_netapp - safeName: azuremgmtnetapp - + safeName: azuremgmtnetapp \ No newline at end of file diff --git a/sdk/network/ci.yml b/sdk/network/ci.yml index 05b3757c83ab..d649a4cb2d38 100644 --- a/sdk/network/ci.yml +++ b/sdk/network/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,8 +24,8 @@ pr: include: - sdk/network/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: network Artifacts: @@ -47,4 +37,3 @@ stages: safeName: azuremgmtnetwork - name: azure_mgmt_privatedns safeName: azuremgmtprivatedns - diff --git a/sdk/notificationhubs/ci.yml b/sdk/notificationhubs/ci.yml index 68003db58ec4..e4a8fb90db52 100644 --- a/sdk/notificationhubs/ci.yml +++ b/sdk/notificationhubs/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/notificationhubs/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: notificationhubs Artifacts: - name: azure_mgmt_notificationhubs safeName: azuremgmtnotificationhubs - diff --git a/sdk/operationsmanagement/ci.yml b/sdk/operationsmanagement/ci.yml index e2e9525410fd..31fde542ea6d 100644 --- a/sdk/operationsmanagement/ci.yml +++ b/sdk/operationsmanagement/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/operationsmanagement/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: operationsmanagement Artifacts: - name: azure_mgmt_operationsmanagement - safeName: azuremgmtoperationsmanagement + safeName: azuremgmtoperationsmanagement \ No newline at end of file diff --git a/sdk/peering/ci.yml b/sdk/peering/ci.yml index 4221ac4c957e..1df047a85539 100644 --- a/sdk/peering/ci.yml +++ b/sdk/peering/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/peering/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: peering Artifacts: - name: azure_mgmt_peering - safeName: azuremgmtpeering - + safeName: azuremgmtpeering \ No newline at end of file diff --git a/sdk/policyinsights/ci.yml b/sdk/policyinsights/ci.yml index d13f3b23af87..ba02dd04f8fd 100644 --- a/sdk/policyinsights/ci.yml +++ b/sdk/policyinsights/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/policyinsights/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: policyinsights Artifacts: - name: azure_mgmt_policyinsights - safeName: azuremgmtpolicyinsights - + safeName: azuremgmtpolicyinsights \ No newline at end of file diff --git a/sdk/powerbidedicated/ci.yml b/sdk/powerbidedicated/ci.yml index 4c2dbd4946d9..04370ff5c9bb 100644 --- a/sdk/powerbidedicated/ci.yml +++ b/sdk/powerbidedicated/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/powerbidedicated/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: powerbidedicated Artifacts: - name: azure_mgmt_powerbidedicated - safeName: azuremgmtpowerbidedicated + safeName: azuremgmtpowerbidedicated \ No newline at end of file diff --git a/sdk/powerbiembedded/ci.yml b/sdk/powerbiembedded/ci.yml index b01ce0773e4b..e75b2366164b 100644 --- a/sdk/powerbiembedded/ci.yml +++ b/sdk/powerbiembedded/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/powerbiembedded/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: powerbiembedded Artifacts: - name: azure_mgmt_powerbiembedded - safeName: azuremgmtpowerbiembedded - + safeName: azuremgmtpowerbiembedded \ No newline at end of file diff --git a/sdk/rdbms/ci.yml b/sdk/rdbms/ci.yml index b2c703f2f95f..9f1006c1f262 100644 --- a/sdk/rdbms/ci.yml +++ b/sdk/rdbms/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/rdbms/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: rdbms Artifacts: - name: azure_mgmt_rdbms - safeName: azuremgmtrdbms - + safeName: azuremgmtrdbms \ No newline at end of file diff --git a/sdk/recoveryservices/ci.yml b/sdk/recoveryservices/ci.yml index 3d705f087ec7..c18ed6e5139f 100644 --- a/sdk/recoveryservices/ci.yml +++ b/sdk/recoveryservices/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,8 +24,8 @@ pr: include: - sdk/recoveryservices/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: recoveryservices Artifacts: @@ -43,4 +33,3 @@ stages: safeName: azuremgmtrecoveryservices - name: azure_mgmt_recoveryservicesbackup safeName: azuremgmtrecoveryservicesbackup - diff --git a/sdk/redhatopenshift/ci.yml b/sdk/redhatopenshift/ci.yml index deaf2dc0600a..e06fee95e0d5 100644 --- a/sdk/redhatopenshift/ci.yml +++ b/sdk/redhatopenshift/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/redhatopenshift/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: redhatopenshift Artifacts: - name: azure_mgmt_redhatopenshift safeName: azuremgmtredhatopenshift - diff --git a/sdk/redis/ci.yml b/sdk/redis/ci.yml index 6a0aeba7d57e..ade6de8da74f 100644 --- a/sdk/redis/ci.yml +++ b/sdk/redis/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/redis/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: redis Artifacts: - name: azure_mgmt_redis - safeName: azuremgmtredis - + safeName: azuremgmtredis \ No newline at end of file diff --git a/sdk/relay/ci.yml b/sdk/relay/ci.yml index 0aa0f49c91c1..82ecb9af476e 100644 --- a/sdk/relay/ci.yml +++ b/sdk/relay/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/relay/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: relay Artifacts: - name: azure_mgmt_relay safeName: azuremgmtrelay - diff --git a/sdk/reservations/ci.yml b/sdk/reservations/ci.yml index ad4b5571f316..ebdb53e98dfa 100644 --- a/sdk/reservations/ci.yml +++ b/sdk/reservations/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/reservations/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: reservations Artifacts: - name: azure_mgmt_reservations - safeName: azuremgmtreservations - + safeName: azuremgmtreservations \ No newline at end of file diff --git a/sdk/resources/ci.yml b/sdk/resources/ci.yml index 70feca48f9bb..8ff78c010caa 100644 --- a/sdk/resources/ci.yml +++ b/sdk/resources/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,8 +24,8 @@ pr: include: - sdk/resources/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: resources Artifacts: @@ -44,5 +34,4 @@ stages: - name: azure_mgmt_resource safeName: azuremgmtresource - name: azure_mgmt_resourcegraph - safeName: azuremgmtresourcegraph - + safeName: azuremgmtresourcegraph \ No newline at end of file diff --git a/sdk/scheduler/ci.yml b/sdk/scheduler/ci.yml index d8961df9cc52..4dd1caf0b77d 100644 --- a/sdk/scheduler/ci.yml +++ b/sdk/scheduler/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/scheduler/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: scheduler Artifacts: - name: azure_mgmt_scheduler - safeName: azuremgmtscheduler - + safeName: azuremgmtscheduler \ No newline at end of file diff --git a/sdk/search/ci.yml b/sdk/search/ci.yml index 72984afc7c74..e07afa82b513 100644 --- a/sdk/search/ci.yml +++ b/sdk/search/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,8 +24,8 @@ pr: include: - sdk/search/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: search Artifacts: diff --git a/sdk/search/tests.yml b/sdk/search/tests.yml index 24c949ae1ce0..594b6ee0209e 100644 --- a/sdk/search/tests.yml +++ b/sdk/search/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/security/ci.yml b/sdk/security/ci.yml index afda5104e055..cc92473c69a6 100644 --- a/sdk/security/ci.yml +++ b/sdk/security/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/security/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: security Artifacts: - name: azure_mgmt_security - safeName: azuremgmtsecurity - + safeName: azuremgmtsecurity \ No newline at end of file diff --git a/sdk/serialconsole/ci.yml b/sdk/serialconsole/ci.yml index bd758eca1d09..b59c3c8918ed 100644 --- a/sdk/serialconsole/ci.yml +++ b/sdk/serialconsole/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/serialconsole/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: serialconsole Artifacts: - name: azure_mgmt_serialconsole - safeName: azuremgmtserialconsole - + safeName: azuremgmtserialconsole \ No newline at end of file diff --git a/sdk/servermanager/ci.yml b/sdk/servermanager/ci.yml index a0e927a4e935..d17bce17796b 100644 --- a/sdk/servermanager/ci.yml +++ b/sdk/servermanager/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/servermanager/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: servermanager Artifacts: - name: azure_mgmt_servermanager - safeName: azuremgmtservermanager - + safeName: azuremgmtservermanager \ No newline at end of file diff --git a/sdk/servicebus/ci.yml b/sdk/servicebus/ci.yml index ec3d83661b75..61c369a0270c 100644 --- a/sdk/servicebus/ci.yml +++ b/sdk/servicebus/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,8 +24,8 @@ pr: include: - sdk/servicebus/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: servicebus Artifacts: @@ -43,4 +33,3 @@ stages: safeName: azuremgmtservicebus - name: azure_servicebus safeName: azureservicebus - diff --git a/sdk/servicebus/tests.yml b/sdk/servicebus/tests.yml index b9daff0222dd..52093ca97d5d 100644 --- a/sdk/servicebus/tests.yml +++ b/sdk/servicebus/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/servicefabric/ci.yml b/sdk/servicefabric/ci.yml index 77ec324025d6..a2ccb391f94b 100644 --- a/sdk/servicefabric/ci.yml +++ b/sdk/servicefabric/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/servicefabric/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: servicefabric Artifacts: - name: azure_mgmt_servicefabric safeName: azuremgmtservicefabric - name: azure_servicefabric - safeName: azureservicefabric - + safeName: azureservicefabric \ No newline at end of file diff --git a/sdk/signalr/ci.yml b/sdk/signalr/ci.yml index 6ef9db5ad3a5..53dc58def1e8 100644 --- a/sdk/signalr/ci.yml +++ b/sdk/signalr/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/signalr/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: signalr Artifacts: - name: azure_mgmt_signalr safeName: azuremgmtsignalr - name: azure_signalr - safeName: azuresignalr - + safeName: azuresignalr \ No newline at end of file diff --git a/sdk/sql/ci.yml b/sdk/sql/ci.yml index 5182d259ad3a..54ed8c35a6db 100644 --- a/sdk/sql/ci.yml +++ b/sdk/sql/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/sql/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: sql Artifacts: - name: azure_mgmt_sql safeName: azuremgmtsql - name: azure_mgmt_sqlvirtualmachine - safeName: azuremgmtsqlvirtualmachine - + safeName: azuremgmtsqlvirtualmachine \ No newline at end of file diff --git a/sdk/storage/ci.yml b/sdk/storage/ci.yml index 19673db8237a..636deebc9191 100644 --- a/sdk/storage/ci.yml +++ b/sdk/storage/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -40,8 +30,8 @@ pr: - tools/ - eng/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: storage Artifacts: @@ -60,4 +50,4 @@ stages: - name: azure_mgmt_storagesync safeName: azuremgmtstoragesync - name: azure_mgmt_storageimportexport - safeName: azuremgmtstorageimportexport + safeName: azuremgmtstorageimportexport \ No newline at end of file diff --git a/sdk/storage/tests.yml b/sdk/storage/tests.yml index ab37d5ceaa85..3a415c102331 100644 --- a/sdk/storage/tests.yml +++ b/sdk/storage/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ./tests_invoke.yml parameters: diff --git a/sdk/subscription/ci.yml b/sdk/subscription/ci.yml index e26398bb94b7..f26e35d85362 100644 --- a/sdk/subscription/ci.yml +++ b/sdk/subscription/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,10 +24,10 @@ pr: include: - sdk/subscription/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: subscription Artifacts: - name: azure_mgmt_subscription - safeName: azuremgmtsubscription + safeName: azuremgmtsubscription \ No newline at end of file diff --git a/sdk/support/ci.yml b/sdk/support/ci.yml index 4ed81f915c4b..542e7f85ee3d 100644 --- a/sdk/support/ci.yml +++ b/sdk/support/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/support/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: support Artifacts: - name: azure_mgmt_support - safeName: azuremgmtsupport + safeName: azuremgmtsupport \ No newline at end of file diff --git a/sdk/synapse/ci.yml b/sdk/synapse/ci.yml index 0f5392f19a76..e059cba3cb73 100644 --- a/sdk/synapse/ci.yml +++ b/sdk/synapse/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,13 +24,12 @@ pr: include: - sdk/synapse/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: synapse Artifacts: - name: azure_synapse safeName: azuresynapse - name: azure_mgmt_synapse - safeName: azuremgmtsynapse + safeName: azuremgmtsynapse \ No newline at end of file diff --git a/sdk/template/ci.yml b/sdk/template/ci.yml index bf64977ab38c..0aa161a0d44c 100644 --- a/sdk/template/ci.yml +++ b/sdk/template/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,10 +24,10 @@ pr: include: - sdk/template/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: template Artifacts: - name: azure_template - safeName: azuretemplate + safeName: azuretemplate \ No newline at end of file diff --git a/sdk/textanalytics/ci.yml b/sdk/textanalytics/ci.yml index 777c485de53a..6e43364cfcce 100644 --- a/sdk/textanalytics/ci.yml +++ b/sdk/textanalytics/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -36,12 +26,12 @@ pr: - sdk/textanalytics/ - sdk/core/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: textanalytics Artifacts: - name: azure_ai_textanalytics safeName: azureaitextanalytics - name: azure_ai_nspkg - safeName: azureainspkg + safeName: azureainspkg \ No newline at end of file diff --git a/sdk/textanalytics/tests.yml b/sdk/textanalytics/tests.yml index 5d0081dc373d..b18182cd3168 100644 --- a/sdk/textanalytics/tests.yml +++ b/sdk/textanalytics/tests.yml @@ -1,12 +1,5 @@ trigger: none -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - jobs: - template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: diff --git a/sdk/timeseriesinsights/ci.yml b/sdk/timeseriesinsights/ci.yml index dd3fe615acfa..a7320505b217 100644 --- a/sdk/timeseriesinsights/ci.yml +++ b/sdk/timeseriesinsights/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,11 +24,10 @@ pr: include: - sdk/timeseriesinsights/ - -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: timeseriesinsights Artifacts: - name: azure_mgmt_timeseriesinsights - safeName: azuremgmttimeseriesinsights + safeName: azuremgmttimeseriesinsights \ No newline at end of file diff --git a/sdk/trafficmanager/ci.yml b/sdk/trafficmanager/ci.yml index 68e40ce5cf27..d5c6ea8abb88 100644 --- a/sdk/trafficmanager/ci.yml +++ b/sdk/trafficmanager/ci.yml @@ -1,16 +1,6 @@ # DO NOT EDIT THIS FILE # This file is generated automatically and any changes will be lost. -resources: - repositories: - - repository: azure-sdk-tools - type: github - name: Azure/azure-sdk-tools - endpoint: azure - - repository: azure-sdk-build-tools - type: git - name: internal/azure-sdk-build-tools - trigger: branches: include: @@ -34,10 +24,10 @@ pr: include: - sdk/trafficmanager/ -stages: -- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml parameters: ServiceDirectory: trafficmanager Artifacts: - name: azure_mgmt_trafficmanager - safeName: azuremgmttrafficmanager + safeName: azuremgmttrafficmanager \ No newline at end of file