Skip to content

Commit

Permalink
Merge commit '1f3c12be2192e1aad08271c0af4e23659c9532f8'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirroring committed Jul 16, 2024
2 parents 32b9e84 + 1f3c12b commit 6c63698
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions eng/pipelines/common/macos-sign-with-entitlements.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
parameters:
filesToSign: []
timeoutInMinutes: '30'

steps:
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 2.1.808'
displayName: Install .NET 6 SDK for signing.
inputs:
packageType: sdk
version: 2.1.808
packageType: 'sdk'
version: '6.0.x'
installationPath: '$(Agent.TempDirectory)/dotnet'

- ${{ each file in parameters.filesToSign }}:
- script: codesign -s - -f --entitlements ${{ file.entitlementsFile }} ${{ file.path }}/${{ file.name }}
Expand Down Expand Up @@ -53,6 +55,14 @@ steps:
"toolVersion": "1.0"
}
]
SessionTimeout: ${{ parameters.timeoutInMinutes }}
MaxConcurrency: '50'
MaxRetryAttempts: '5'
PendingAnalysisWaitTimeoutMinutes: '5'
env:
DOTNET_MULTILEVEL_LOOKUP: 0
DOTNET_ROOT: '$(Agent.TempDirectory)/dotnet'
DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR: '$(Agent.TempDirectory)/dotnet'

- task: ExtractFiles@1
displayName: 'Extract MacOS after signing'
Expand Down

0 comments on commit 6c63698

Please sign in to comment.