-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split Mdoc Release check CI into multiple jobs since single job max t…
…imeout limit (#633) * add Mdoc-ReleaseCheckCI yml * Update Mdoc-ReleaseCheckCI.yml for Azure Pipelines * Update Mdoc-ReleaseCheckCI.yml for Azure Pipelines * Update compareXmlFiles.ps1 * Update Mdoc-ReleaseCheckCI.yml for Azure Pipelines * Update compareXmlFiles.ps1 * Update compareXmlFiles.ps1 * Update Mdoc-ReleaseCheckCI.yml for Azure Pipelines * Update Mdoc-ReleaseCheckCI.yml * Update compareXmlFiles.ps1 * Update Mdoc-ReleaseCheckCI.yml * Update compareXmlFiles.ps1 * Update Mdoc-ReleaseCheckCI.yml * Update Mdoc-ReleaseCheckCI.yml * Update compareXmlFiles.ps1 * Update Mdoc-ReleaseCheckCI.yml * Update Mdoc-ReleaseCheckCI.yml for Azure Pipelines * Update Mdoc-ReleaseCheckCI.yml * Update Mdoc-ReleaseCheckCI.yml for Azure Pipelines
- Loading branch information
Showing
2 changed files
with
162 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
# Starter pipeline | ||
# Start with a minimal pipeline that you can customize to build and deploy your code. | ||
# Add steps that build, run tests, deploy, and more: | ||
# https://aka.ms/yaml | ||
|
||
trigger: none | ||
pr: | ||
- main | ||
|
||
# Variable 'needRunReleaseMdoc' was defined in the Variables tab | ||
# Variable 'params' was defined in the Variables tab | ||
# Agent Queue 'Azure Pipelines' was used with unrecognized Agent Specification, vmImage property must be specified to determine image - https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml#software | ||
variables: | ||
solution: 'apidoctools.sln' | ||
buildConfiguration: 'Release' | ||
buildPlatform: 'any cpu' | ||
name: $(date:yyyyMMdd)$(rev:.r) | ||
resources: | ||
repositories: | ||
- repository: self | ||
type: git | ||
ref: refs/heads/develop | ||
jobs: | ||
- job: Job_1 | ||
displayName: Agent job 1 | ||
timeoutInMinutes: 600 | ||
pool: | ||
name: Azure Pipelines | ||
vmImage: windows-2022 | ||
steps: | ||
- checkout: self | ||
clean: true | ||
- task: AzureKeyVault@2 | ||
displayName: 'Azure Key Vault: ReferenceAutomation-Prod' | ||
inputs: | ||
ConnectedServiceName: 886728b9-fc93-486c-ba21-26777bea99af | ||
KeyVaultName: ReferenceAutomation-Prod | ||
enabled: true | ||
- task: NuGetAuthenticate@0 | ||
displayName: NuGet Authenticate | ||
- task: PowerShell@2 | ||
displayName: Compare xml files | ||
timeoutInMinutes: 600 | ||
inputs: | ||
filePath: mdoc/compareXmlFiles.ps1 | ||
arguments: -paramsJson '$(params)' -githubTokenBase64 '$(githubTokenBase64)' -githubOptionsAccountName $(githubOptionsAccountName) -githubOptionsAccountEmail $(githubOptionsAccountEmail) -vstsTokenBase64 '$(vstsTokenBase64)' -step '1' -commit1 '' | ||
enabled: true | ||
name: job1output | ||
- job: Job_2 | ||
displayName: Agent job2 | ||
timeoutInMinutes: 600 | ||
dependsOn: Job_1 | ||
variables: | ||
commit1: $[ dependencies.Job_1.outputs['job1output.commit1'] ] | ||
pool: | ||
name: Azure Pipelines | ||
vmImage: windows-2022 | ||
steps: | ||
- checkout: self | ||
clean: true | ||
- task: AzureKeyVault@2 | ||
displayName: 'Azure Key Vault: ReferenceAutomation-Prod' | ||
inputs: | ||
ConnectedServiceName: 886728b9-fc93-486c-ba21-26777bea99af | ||
KeyVaultName: ReferenceAutomation-Prod | ||
enabled: true | ||
- task: NuGetToolInstaller@0 | ||
displayName: Use NuGet 4.4.1 | ||
inputs: | ||
versionSpec: 4.4.1 | ||
enabled: true | ||
- task: NuGetCommand@2 | ||
displayName: NuGet restore | ||
inputs: | ||
solution: $(BuildParameters.solution) | ||
enabled: true | ||
- task: CmdLine@2 | ||
displayName: Command Line Script | ||
inputs: | ||
script: make prepare | ||
enabled: true | ||
- task: VSBuild@1 | ||
displayName: Build solution | ||
inputs: | ||
solution: $(solution) | ||
msbuildArgs: /p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactstagingdirectory)\\" | ||
platform: $(BuildPlatform) | ||
configuration: $(BuildConfiguration) | ||
enabled: true | ||
- task: NuGetAuthenticate@0 | ||
displayName: NuGet Authenticate | ||
- task: PowerShell@2 | ||
displayName: Compare xml files | ||
timeoutInMinutes: 600 | ||
inputs: | ||
filePath: mdoc/compareXmlFiles.ps1 | ||
arguments: -paramsJson '$(params)' -githubTokenBase64 '$(githubTokenBase64)' -githubOptionsAccountName $(githubOptionsAccountName) -githubOptionsAccountEmail $(githubOptionsAccountEmail) -vstsTokenBase64 '$(vstsTokenBase64)' -step '2' -commit1 '$(commit1)' | ||
enabled: true | ||
name: job2output | ||
- task: PowerShell@2 | ||
displayName: Print Compare Url | ||
inputs: | ||
targetType: inline | ||
script: >- | ||
# Write your PowerShell commands here. | ||
Write-Host "Compare Url: $Env:CompareUrl" | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters