-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies from https://github.com/dotnet/arcade build 20240…
…301.4 (#4981) [main] Update dependencies from dotnet/arcade
- Loading branch information
1 parent
018768f
commit 76b6d4a
Showing
26 changed files
with
1,754 additions
and
6 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
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,255 @@ | ||
# Internal resources (telemetry, microbuild) can only be accessed from non-public projects, | ||
# and some (Microbuild) should only be applied to non-PR cases for internal builds. | ||
|
||
parameters: | ||
# Job schema parameters - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#job | ||
cancelTimeoutInMinutes: '' | ||
condition: '' | ||
container: '' | ||
continueOnError: false | ||
dependsOn: '' | ||
displayName: '' | ||
pool: '' | ||
steps: [] | ||
strategy: '' | ||
timeoutInMinutes: '' | ||
variables: [] | ||
workspace: '' | ||
|
||
# Job base template specific parameters | ||
# See schema documentation - https://github.com/dotnet/arcade/blob/master/Documentation/AzureDevOps/TemplateSchema.md | ||
artifacts: '' | ||
enableMicrobuild: false | ||
enablePublishBuildArtifacts: false | ||
enablePublishBuildAssets: false | ||
enablePublishTestResults: false | ||
enablePublishUsingPipelines: false | ||
enableBuildRetry: false | ||
disableComponentGovernance: '' | ||
componentGovernanceIgnoreDirectories: '' | ||
mergeTestResults: false | ||
testRunTitle: '' | ||
testResultsFormat: '' | ||
name: '' | ||
preSteps: [] | ||
runAsPublic: false | ||
# Sbom related params | ||
enableSbom: true | ||
PackageVersion: 7.0.0 | ||
BuildDropPath: '$(Build.SourcesDirectory)/artifacts' | ||
|
||
jobs: | ||
- job: ${{ parameters.name }} | ||
|
||
${{ if ne(parameters.cancelTimeoutInMinutes, '') }}: | ||
cancelTimeoutInMinutes: ${{ parameters.cancelTimeoutInMinutes }} | ||
|
||
${{ if ne(parameters.condition, '') }}: | ||
condition: ${{ parameters.condition }} | ||
|
||
${{ if ne(parameters.container, '') }}: | ||
container: ${{ parameters.container }} | ||
|
||
${{ if ne(parameters.continueOnError, '') }}: | ||
continueOnError: ${{ parameters.continueOnError }} | ||
|
||
${{ if ne(parameters.dependsOn, '') }}: | ||
dependsOn: ${{ parameters.dependsOn }} | ||
|
||
${{ if ne(parameters.displayName, '') }}: | ||
displayName: ${{ parameters.displayName }} | ||
|
||
${{ if ne(parameters.pool, '') }}: | ||
pool: ${{ parameters.pool }} | ||
|
||
${{ if ne(parameters.strategy, '') }}: | ||
strategy: ${{ parameters.strategy }} | ||
|
||
${{ if ne(parameters.timeoutInMinutes, '') }}: | ||
timeoutInMinutes: ${{ parameters.timeoutInMinutes }} | ||
|
||
variables: | ||
- ${{ if ne(parameters.enableTelemetry, 'false') }}: | ||
- name: DOTNET_CLI_TELEMETRY_PROFILE | ||
value: '$(Build.Repository.Uri)' | ||
- ${{ if eq(parameters.enableRichCodeNavigation, 'true') }}: | ||
- name: EnableRichCodeNavigation | ||
value: 'true' | ||
# Retry signature validation up to three times, waiting 2 seconds between attempts. | ||
# See https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu3028#retry-untrusted-root-failures | ||
- name: NUGET_EXPERIMENTAL_CHAIN_BUILD_RETRY_POLICY | ||
value: 3,2000 | ||
- ${{ each variable in parameters.variables }}: | ||
# handle name-value variable syntax | ||
# example: | ||
# - name: [key] | ||
# value: [value] | ||
- ${{ if ne(variable.name, '') }}: | ||
- name: ${{ variable.name }} | ||
value: ${{ variable.value }} | ||
|
||
# handle variable groups | ||
- ${{ if ne(variable.group, '') }}: | ||
- group: ${{ variable.group }} | ||
|
||
# handle template variable syntax | ||
# example: | ||
# - template: path/to/template.yml | ||
# parameters: | ||
# [key]: [value] | ||
- ${{ if ne(variable.template, '') }}: | ||
- template: ${{ variable.template }} | ||
${{ if ne(variable.parameters, '') }}: | ||
parameters: ${{ variable.parameters }} | ||
|
||
# handle key-value variable syntax. | ||
# example: | ||
# - [key]: [value] | ||
- ${{ if and(eq(variable.name, ''), eq(variable.group, ''), eq(variable.template, '')) }}: | ||
- ${{ each pair in variable }}: | ||
- name: ${{ pair.key }} | ||
value: ${{ pair.value }} | ||
|
||
# DotNet-HelixApi-Access provides 'HelixApiAccessToken' for internal builds | ||
- ${{ if and(eq(parameters.enableTelemetry, 'true'), eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: | ||
- group: DotNet-HelixApi-Access | ||
|
||
${{ if ne(parameters.workspace, '') }}: | ||
workspace: ${{ parameters.workspace }} | ||
|
||
steps: | ||
- ${{ if ne(parameters.preSteps, '') }}: | ||
- ${{ each preStep in parameters.preSteps }}: | ||
- ${{ preStep }} | ||
|
||
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: | ||
- ${{ if eq(parameters.enableMicrobuild, 'true') }}: | ||
- task: MicroBuildSigningPlugin@3 | ||
displayName: Install MicroBuild plugin | ||
inputs: | ||
signType: $(_SignType) | ||
zipSources: false | ||
feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json | ||
env: | ||
TeamName: $(_TeamName) | ||
continueOnError: ${{ parameters.continueOnError }} | ||
condition: and(succeeded(), in(variables['_SignType'], 'real', 'test'), eq(variables['Agent.Os'], 'Windows_NT')) | ||
|
||
- ${{ if and(eq(parameters.runAsPublic, 'false'), eq(variables['System.TeamProject'], 'internal')) }}: | ||
- task: NuGetAuthenticate@1 | ||
|
||
- ${{ if and(ne(parameters.artifacts.download, 'false'), ne(parameters.artifacts.download, '')) }}: | ||
- task: DownloadPipelineArtifact@2 | ||
inputs: | ||
buildType: current | ||
artifactName: ${{ coalesce(parameters.artifacts.download.name, 'Artifacts_$(Agent.OS)_$(_BuildConfig)') }} | ||
targetPath: ${{ coalesce(parameters.artifacts.download.path, 'artifacts') }} | ||
itemPattern: ${{ coalesce(parameters.artifacts.download.pattern, '**') }} | ||
|
||
- ${{ each step in parameters.steps }}: | ||
- ${{ step }} | ||
|
||
- ${{ if eq(parameters.enableRichCodeNavigation, true) }}: | ||
- task: RichCodeNavIndexer@0 | ||
displayName: RichCodeNav Upload | ||
inputs: | ||
languages: ${{ coalesce(parameters.richCodeNavigationLanguage, 'csharp') }} | ||
environment: ${{ coalesce(parameters.richCodeNavigationEnvironment, 'production') }} | ||
richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin | ||
uploadRichNavArtifacts: ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }} | ||
continueOnError: true | ||
|
||
- template: /eng/common/templates-official/steps/component-governance.yml | ||
parameters: | ||
${{ if eq(parameters.disableComponentGovernance, '') }}: | ||
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.runAsPublic, 'false'), or(startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/dotnet/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/microsoft/'), eq(variables['Build.SourceBranch'], 'refs/heads/main'))) }}: | ||
disableComponentGovernance: false | ||
${{ else }}: | ||
disableComponentGovernance: true | ||
${{ else }}: | ||
disableComponentGovernance: ${{ parameters.disableComponentGovernance }} | ||
componentGovernanceIgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} | ||
|
||
- ${{ if eq(parameters.enableMicrobuild, 'true') }}: | ||
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: | ||
- task: MicroBuildCleanup@1 | ||
displayName: Execute Microbuild cleanup tasks | ||
condition: and(always(), in(variables['_SignType'], 'real', 'test'), eq(variables['Agent.Os'], 'Windows_NT')) | ||
continueOnError: ${{ parameters.continueOnError }} | ||
env: | ||
TeamName: $(_TeamName) | ||
|
||
- ${{ if ne(parameters.artifacts.publish, '') }}: | ||
- ${{ if and(ne(parameters.artifacts.publish.artifacts, 'false'), ne(parameters.artifacts.publish.artifacts, '')) }}: | ||
- task: CopyFiles@2 | ||
displayName: Gather binaries for publish to artifacts | ||
inputs: | ||
SourceFolder: 'artifacts/bin' | ||
Contents: '**' | ||
TargetFolder: '$(Build.ArtifactStagingDirectory)/artifacts/bin' | ||
- task: CopyFiles@2 | ||
displayName: Gather packages for publish to artifacts | ||
inputs: | ||
SourceFolder: 'artifacts/packages' | ||
Contents: '**' | ||
TargetFolder: '$(Build.ArtifactStagingDirectory)/artifacts/packages' | ||
- task: 1ES.PublishBuildArtifacts@1 | ||
displayName: Publish pipeline artifacts | ||
inputs: | ||
PathtoPublish: '$(Build.ArtifactStagingDirectory)/artifacts' | ||
PublishLocation: Container | ||
ArtifactName: ${{ coalesce(parameters.artifacts.publish.artifacts.name , 'Artifacts_$(Agent.Os)_$(_BuildConfig)') }} | ||
continueOnError: true | ||
condition: always() | ||
- ${{ if and(ne(parameters.artifacts.publish.logs, 'false'), ne(parameters.artifacts.publish.logs, '')) }}: | ||
- publish: artifacts/log | ||
artifact: ${{ coalesce(parameters.artifacts.publish.logs.name, 'Logs_Build_$(Agent.Os)_$(_BuildConfig)') }} | ||
displayName: Publish logs | ||
continueOnError: true | ||
condition: always() | ||
|
||
- ${{ if ne(parameters.enablePublishBuildArtifacts, 'false') }}: | ||
- task: 1ES.PublishBuildArtifacts@1 | ||
displayName: Publish Logs | ||
inputs: | ||
PathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' | ||
PublishLocation: Container | ||
ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)' ) }} | ||
continueOnError: true | ||
condition: always() | ||
|
||
- ${{ if or(and(eq(parameters.enablePublishTestResults, 'true'), eq(parameters.testResultsFormat, '')), eq(parameters.testResultsFormat, 'xunit')) }}: | ||
- task: PublishTestResults@2 | ||
displayName: Publish XUnit Test Results | ||
inputs: | ||
testResultsFormat: 'xUnit' | ||
testResultsFiles: '*.xml' | ||
searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' | ||
testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-xunit | ||
mergeTestResults: ${{ parameters.mergeTestResults }} | ||
continueOnError: true | ||
condition: always() | ||
- ${{ if or(and(eq(parameters.enablePublishTestResults, 'true'), eq(parameters.testResultsFormat, '')), eq(parameters.testResultsFormat, 'vstest')) }}: | ||
- task: PublishTestResults@2 | ||
displayName: Publish TRX Test Results | ||
inputs: | ||
testResultsFormat: 'VSTest' | ||
testResultsFiles: '*.trx' | ||
searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' | ||
testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-trx | ||
mergeTestResults: ${{ parameters.mergeTestResults }} | ||
continueOnError: true | ||
condition: always() | ||
|
||
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.enableSbom, 'true')) }}: | ||
- template: /eng/common/templates-official/steps/generate-sbom.yml | ||
parameters: | ||
PackageVersion: ${{ parameters.packageVersion}} | ||
BuildDropPath: ${{ parameters.buildDropPath }} | ||
IgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} | ||
|
||
- ${{ if eq(parameters.enableBuildRetry, 'true') }}: | ||
- publish: $(Build.SourcesDirectory)\eng\common\BuildConfiguration | ||
artifact: BuildConfiguration | ||
displayName: Publish build retry configuration | ||
continueOnError: true |
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,112 @@ | ||
parameters: | ||
# Optional: dependencies of the job | ||
dependsOn: '' | ||
|
||
# Optional: A defined YAML pool - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#pool | ||
pool: '' | ||
|
||
CeapexPat: $(dn-bot-ceapex-package-r) # PAT for the loc AzDO instance https://dev.azure.com/ceapex | ||
GithubPat: $(BotAccount-dotnet-bot-repo-PAT) | ||
|
||
SourcesDirectory: $(Build.SourcesDirectory) | ||
CreatePr: true | ||
AutoCompletePr: false | ||
ReusePr: true | ||
UseLfLineEndings: true | ||
UseCheckedInLocProjectJson: false | ||
SkipLocProjectJsonGeneration: false | ||
LanguageSet: VS_Main_Languages | ||
LclSource: lclFilesInRepo | ||
LclPackageId: '' | ||
RepoType: gitHub | ||
GitHubOrg: dotnet | ||
MirrorRepo: '' | ||
MirrorBranch: main | ||
condition: '' | ||
JobNameSuffix: '' | ||
|
||
jobs: | ||
- job: OneLocBuild${{ parameters.JobNameSuffix }} | ||
|
||
dependsOn: ${{ parameters.dependsOn }} | ||
|
||
displayName: OneLocBuild${{ parameters.JobNameSuffix }} | ||
|
||
variables: | ||
- group: OneLocBuildVariables # Contains the CeapexPat and GithubPat | ||
- name: _GenerateLocProjectArguments | ||
value: -SourcesDirectory ${{ parameters.SourcesDirectory }} | ||
-LanguageSet "${{ parameters.LanguageSet }}" | ||
-CreateNeutralXlfs | ||
- ${{ if eq(parameters.UseCheckedInLocProjectJson, 'true') }}: | ||
- name: _GenerateLocProjectArguments | ||
value: ${{ variables._GenerateLocProjectArguments }} -UseCheckedInLocProjectJson | ||
- template: /eng/common/templates-official/variables/pool-providers.yml | ||
|
||
${{ if ne(parameters.pool, '') }}: | ||
pool: ${{ parameters.pool }} | ||
${{ if eq(parameters.pool, '') }}: | ||
pool: | ||
# We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) | ||
${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: | ||
name: AzurePipelines-EO | ||
image: 1ESPT-Windows2022 | ||
demands: Cmd | ||
os: windows | ||
# If it's not devdiv, it's dnceng | ||
${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: | ||
name: $(DncEngInternalBuildPool) | ||
image: 1es-windows-2022-pt | ||
os: windows | ||
|
||
steps: | ||
- ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: | ||
- task: Powershell@2 | ||
inputs: | ||
filePath: $(Build.SourcesDirectory)/eng/common/generate-locproject.ps1 | ||
arguments: $(_GenerateLocProjectArguments) | ||
displayName: Generate LocProject.json | ||
condition: ${{ parameters.condition }} | ||
|
||
- task: OneLocBuild@2 | ||
displayName: OneLocBuild | ||
env: | ||
SYSTEM_ACCESSTOKEN: $(System.AccessToken) | ||
inputs: | ||
locProj: eng/Localize/LocProject.json | ||
outDir: $(Build.ArtifactStagingDirectory) | ||
lclSource: ${{ parameters.LclSource }} | ||
lclPackageId: ${{ parameters.LclPackageId }} | ||
isCreatePrSelected: ${{ parameters.CreatePr }} | ||
isAutoCompletePrSelected: ${{ parameters.AutoCompletePr }} | ||
${{ if eq(parameters.CreatePr, true) }}: | ||
isUseLfLineEndingsSelected: ${{ parameters.UseLfLineEndings }} | ||
${{ if eq(parameters.RepoType, 'gitHub') }}: | ||
isShouldReusePrSelected: ${{ parameters.ReusePr }} | ||
packageSourceAuth: patAuth | ||
patVariable: ${{ parameters.CeapexPat }} | ||
${{ if eq(parameters.RepoType, 'gitHub') }}: | ||
repoType: ${{ parameters.RepoType }} | ||
gitHubPatVariable: "${{ parameters.GithubPat }}" | ||
${{ if ne(parameters.MirrorRepo, '') }}: | ||
isMirrorRepoSelected: true | ||
gitHubOrganization: ${{ parameters.GitHubOrg }} | ||
mirrorRepo: ${{ parameters.MirrorRepo }} | ||
mirrorBranch: ${{ parameters.MirrorBranch }} | ||
condition: ${{ parameters.condition }} | ||
|
||
- task: 1ES.PublishBuildArtifacts@1 | ||
displayName: Publish Localization Files | ||
inputs: | ||
PathtoPublish: '$(Build.ArtifactStagingDirectory)/loc' | ||
PublishLocation: Container | ||
ArtifactName: Loc | ||
condition: ${{ parameters.condition }} | ||
|
||
- task: 1ES.PublishBuildArtifacts@1 | ||
displayName: Publish LocProject.json | ||
inputs: | ||
PathtoPublish: '$(Build.SourcesDirectory)/eng/Localize/' | ||
PublishLocation: Container | ||
ArtifactName: Loc | ||
condition: ${{ parameters.condition }} |
Oops, something went wrong.