Skip to content

Commit

Permalink
test on aws pool
Browse files Browse the repository at this point in the history
  • Loading branch information
matemoln committed Oct 26, 2023
1 parent c55eb06 commit ba880db
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ schedules:
trigger:
- master

pool: '.Net Bubble - GCP'
pool: .net-bubble-aws-re-team-dev

variables:
- group: sonar-dotnet-variables
Expand Down Expand Up @@ -108,7 +108,9 @@ stages:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:SignAssembly=$(isReleaseBranch) /p:AssemblyOriginatorKeyFile="$(snk.secureFilePath)" /p:Sha1=$(Build.SourceVersion) /p:BuildNumber=$(Build.BuildId) /p:WarningLevel=0'
# Code signing is temporarily disabled until new certificate is properly set up
# https://github.com/SonarSource/sonar-dotnet/issues/8230
msbuildArgs: '/p:SignAssembly=false /p:AssemblyOriginatorKeyFile="$(snk.secureFilePath)" /p:Sha1=$(Build.SourceVersion) /p:BuildNumber=$(Build.BuildId) /p:WarningLevel=0'
vsVersion: $(vsVersion)

- task: NuGetCommand@2
Expand All @@ -121,7 +123,10 @@ stages:
verbosityPack: 'Detailed'
publishPackageMetadata: true

# Code signing is temporarily disabled until new certificate is properly set up.
# https://github.com/SonarSource/sonar-dotnet/issues/8230
- task: NuGetCommand@2
enabled: false
displayName: "Sign NuGet packages"
condition: eq(variables.isReleaseBranch, 'True')
inputs:
Expand Down

0 comments on commit ba880db

Please sign in to comment.