Sonar build using azure devops

Hello Team,
we are getting build issues while performing the sonar build getting below error,
we are using correct project name and project key
we are using trying for .net and reach.js projects

##[warning][WARN] SonarQube Server: No analyses found in this build! Please check your build configuration.

here the build commands

- task: SonarQubePrepare@7
  inputs:
    SonarQube: 'SonarQube'
    scannerMode: 'dotnet'
    projectKey: 'KEY'
    projectName: 'NAME'
    cliSources:  '$(System.DefaultWorkingDirectory)'

Hi,

Could you provide a full, debug analysis log, please?

Share the Scanner for .NET verbose logs

  • Add /d:"sonar.verbose=true" to the…
    • SonarScanner.MSBuild.exe or dotnet sonarscanner begin command to get more detailed logs
      • For example: SonarScanner.MSBuild.exe begin /k:"MyProject" /d:"sonar.verbose=true"
    • “SonarQubePrepare” or “SonarCloudPrepare” task’s extraProperties argument if you are using Azure DevOps
      • For example:
        - task: SonarCloudPrepare@3
            inputs:
              SonarCloud: 'sonarcloud'
              organization: 'foo'
              scannerMode: 'dotnet'
              projectKey: 'foo_sonar-scanning-someconsoleapp'
              projectName: 'sonar-scanning-someconsoleapp'
              extraProperties: |
                sonar.verbose=true
        
  • The important logs are in the END step (i.e. SonarQubeAnalyze / SonarCloudAnalyze / “Run Code Analysis”)

Share the msbuild detailed logs

MsBuild.exe /t:Rebuild /v:d

or

dotnet build -v:d

 
Thx,
Ann

Hey,

In Azure DevOps you’ll also get some insight by checking the “Enable System Diagnostics” next to the “Run” button when running manually a pipeline, that may give you more information.

image

HTH

1 Like

Hello Team,

we are getting build issues, find the below error,
we are using azure devops

##[error][ERROR] SonarQube Server: Error while executing task Analyze: The process ‘/usr/bin/dotnet’ failed with exit code 1
##[error]The process ‘/usr/bin/dotnet’ failed with exit code 1
Finishing: SonarQubeAnalyze

Hi @vipin_7457,

We’re not going to be able to help you without the logs I asked for previously.

 
Ann

Hello Camp find the below attached logs

2025-01-20T12:08:00.5578051Z ##[section]Starting: SonarQubeAnalyze
2025-01-20T12:08:00.5582499Z ==============================================================================
2025-01-20T12:08:00.5582646Z Task         : Run Code Analysis
2025-01-20T12:08:00.5582715Z Description  : Run scanner and upload the results to the SonarQube Server.
2025-01-20T12:08:00.5582834Z Version      : 7.1.1
2025-01-20T12:08:00.5582901Z Author       : sonarsource
2025-01-20T12:08:00.5582981Z Help         : This task is not needed for Maven and Gradle projects since the scanner should be run as part of the build.

[More Information](https://docs.sonarsource.com/sonarqube/latest/analyzing-source-code/scanners/sonarqube-extension-for-azure-devops/)
2025-01-20T12:08:00.5583217Z ==============================================================================
2025-01-20T12:08:00.7791848Z [command]/usr/bin/dotnet /home/vsts/work/_tasks/SonarQubePrepare_15b84ca1-b62f-4a2a-a403-89b77a063157/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll end
2025-01-20T12:08:00.8542052Z SonarScanner for MSBuild 9.0.2
2025-01-20T12:08:00.8542709Z Using the .NET Core version of the Scanner for MSBuild
2025-01-20T12:08:00.9136537Z Post-processing started.
2025-01-20T12:08:00.9939393Z ##[error]12:08:00.992  The SonarScanner for MSBuild integration failed: SonarQube was unable to collect the required information about your projects.
Possible causes:
  1. The project has not been built - the project must be built in between the begin and end steps.
  2. An unsupported version of MSBuild has been used to build the project. Supported versions: MSBuild 16 and higher.
  3. The begin, build and end steps have not all been launched from the same folder.
  4. None of the analyzed projects have a valid ProjectGuid and you have not used a solution (.sln).
2025-01-20T12:08:00.9941199Z 12:08:00.992  The SonarScanner for MSBuild integration failed: SonarQube was unable to collect the required information about your projects.
2025-01-20T12:08:00.9942328Z Possible causes:
2025-01-20T12:08:00.9942894Z   1. The project has not been built - the project must be built in between the begin and end steps.
2025-01-20T12:08:00.9943244Z   2. An unsupported version of MSBuild has been used to build the project. Supported versions: MSBuild 16 and higher.
2025-01-20T12:08:00.9943532Z   3. The begin, build and end steps have not all been launched from the same folder.
2025-01-20T12:08:00.9943785Z   4. None of the analyzed projects have a valid ProjectGuid and you have not used a solution (.sln).
2025-01-20T12:08:00.9944056Z 12:08:00.992  Generation of the sonar-properties file failed. Unable to complete the analysis.
2025-01-20T12:08:00.9980047Z ##[error]12:08:00.997  Post-processing failed. Exit code: 1
2025-01-20T12:08:00.9981085Z 12:08:00.997  Post-processing failed. Exit code: 1
2025-01-20T12:08:01.0031995Z ##[error][ERROR] SonarQube Server: Error while executing task Analyze: The process '/usr/bin/dotnet' failed with exit code 1
2025-01-20T12:08:01.0036826Z ##[error]The process '/usr/bin/dotnet' failed with exit code 1
2025-01-20T12:08:01.0137761Z ##[section]Finishing: SonarQubeAnalyze

Hi,

Thanks for the end log. Can we have the full job log, from begin through to end?

 
Thx,
Ann

2025-01-21T11:39:31.8103647Z ##[section]Starting: Build
2025-01-21T11:39:31.8456594Z ##[debug]Cleaning agent temp folder: /home/vsts/work/_temp
2025-01-21T11:39:31.8476238Z ##[debug]Skipping overwrite %TEMP% environment variable
2025-01-21T11:39:32.1755837Z ##[section]Starting: Initialize job
2025-01-21T11:39:32.1760018Z Agent name: 'Hosted Agent'
2025-01-21T11:39:32.1760692Z Agent machine name: 'fv-azxxxx'
2025-01-21T11:39:32.1761034Z Current agent version: '4.248.0'
2025-01-21T11:39:32.1795578Z ##[group]Operating System
2025-01-21T11:39:32.1795947Z Ubuntu
2025-01-21T11:39:32.1796182Z 22.04.5
2025-01-21T11:39:32.1796422Z LTS
2025-01-21T11:39:32.1796689Z ##[endgroup]
2025-01-21T11:39:32.1796983Z ##[group]Runner Image
2025-01-21T11:39:32.1797278Z Image: ubuntu-22.04
2025-01-21T11:39:32.1797566Z Version: 20250105.1.0
2025-01-21T11:39:32.1798245Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20250105.1/images/ubuntu/Ubuntu2204-Readme.md
2025-01-21T11:39:32.1798718Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20250105.1
2025-01-21T11:39:32.1799391Z ##[endgroup]
2025-01-21T11:39:32.1800026Z ##[group]Runner Image Provisioner
2025-01-21T11:39:32.1800476Z 2.0.417.1
2025-01-21T11:39:32.1800899Z ##[endgroup]
2025-01-21T11:39:32.1805279Z Current image version: '20250105.1.0'
2025-01-21T11:39:32.3284868Z Agent running as: 'vsts'
2025-01-21T11:39:32.3341364Z ##[debug]Triggering repository: <repo>. repository type: Git
2025-01-21T11:39:32.3346097Z Prepare build directory.
2025-01-21T11:39:32.3591792Z ##[debug]Creating build directory: '/home/vsts/work/1'
2025-01-21T11:39:32.3594404Z ##[debug]Delete existing artifacts directory: '/home/vsts/work/1/a'
2025-01-21T11:39:32.3597211Z ##[debug]Creating artifacts directory: '/home/vsts/work/1/a'
2025-01-21T11:39:32.3599674Z ##[debug]Delete existing test results directory: '/home/vsts/work/1/TestResults'
2025-01-21T11:39:32.3600567Z ##[debug]Creating test results directory: '/home/vsts/work/1/TestResults'
2025-01-21T11:39:32.3602523Z ##[debug]Creating binaries directory: '/home/vsts/work/1/b'
2025-01-21T11:39:32.3604379Z ##[debug]Creating source directory: '/home/vsts/work/1/s'
2025-01-21T11:39:32.3645013Z Set build variables.
2025-01-21T11:39:32.3668564Z Download all required tasks.
2025-01-21T11:39:32.3769206Z Downloading task: MicrosoftSecurityDevOps (1.17.1)
2025-01-21T11:39:32.9689679Z ##[debug]Agent environment resources - Unable to get disk info, exception: Value cannot be null. (Parameter 'driveName'), Memory: Used 894.00 MB out of 6921.00 MB, CPU: Usage 50.61%
2025-01-21T11:39:33.1252606Z ##[debug]Task 'MicrosoftSecurityDevOps' has been downloaded into '/home/vsts/work/_tasks/MicrosoftSecurityDevOps_8d616517-6390-454f-b369-6fd038d8fe96/1.17.1'.
2025-01-21T11:39:33.1432818Z Downloading task: Docker (2.248.1)
2025-01-21T11:39:34.7451452Z ##[debug]Task 'Docker' has been downloaded into '/home/vsts/work/_tasks/Docker_etoken/2.248.1'.
2025-01-21T11:39:34.7510552Z Downloading task: SonarQubePrepare (7.1.1)
2025-01-21T11:39:35.2597172Z ##[debug]Task 'SonarQubePrepare' has been downloaded into '/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1'.
2025-01-21T11:39:35.2632158Z Downloading task: SonarQubeAnalyze (7.1.1)
2025-01-21T11:39:36.0530214Z ##[debug]Task 'SonarQubeAnalyze' has been downloaded into '/home/vsts/work/_tasks/SonarQubeAnalyze_token/7.1.1'.
2025-01-21T11:39:36.0571753Z Downloading task: SonarQubePublish (7.1.1)
2025-01-21T11:39:36.1475363Z ##[debug]Task 'SonarQubePublish' has been downloaded into '/home/vsts/work/_tasks/SonarQubePublish_291ed61f-1ee4-45d3-b1b0-bf822d9095ef/7.1.1'.
2025-01-21T11:39:36.2807459Z ##[debug]Task 'Microsoft Defender for DevOps Container Mapping Start' has following condition: 'always()'.
2025-01-21T11:39:36.2876150Z ##[debug]Parsing expression: <always()>
2025-01-21T11:39:36.2899305Z ##[debug]always
2025-01-21T11:39:36.2905886Z ##[debug](
2025-01-21T11:39:36.2909484Z ##[debug])
2025-01-21T11:39:36.3233713Z ##[debug]Task 'Microsoft Defender for DevOps Container Mapping End' has following condition: 'always()'.
2025-01-21T11:39:36.3238639Z ##[debug]Parsing expression: <always()>
2025-01-21T11:39:36.3239596Z ##[debug]always
2025-01-21T11:39:36.3240202Z ##[debug](
2025-01-21T11:39:36.3240909Z ##[debug])
2025-01-21T11:39:36.3333038Z Checking job knob settings.
2025-01-21T11:39:36.3340989Z    Knob: DockerActionRetries = true Source: $(VSTSAGENT_DOCKER_ACTION_RETRIES) 
2025-01-21T11:39:36.3341915Z    Knob: AgentToolsDirectory = /opt/hostedtoolcache Source: ${AGENT_TOOLSDIRECTORY} 
2025-01-21T11:39:36.3345408Z    Knob: UseGitLongPaths = true Source: $(USE_GIT_LONG_PATHS) 
2025-01-21T11:39:36.3349036Z    Knob: AgentPerflog = /home/vsts/perflog Source: ${VSTS_AGENT_PERFLOG} 
2025-01-21T11:39:36.3352570Z    Knob: EnableIssueSourceValidation = true Source: $(ENABLE_ISSUE_SOURCE_VALIDATION) 
2025-01-21T11:39:36.3354835Z    Knob: AgentEnablePipelineArtifactLargeChunkSize = true Source: $(AGENT_ENABLE_PIPELINEARTIFACT_LARGE_CHUNK_SIZE) 
2025-01-21T11:39:36.3360707Z    Knob: ContinueAfterCancelProcessTreeKillAttempt = true Source: $(VSTSAGENT_CONTINUE_AFTER_CANCEL_PROCESSTREEKILL_ATTEMPT) 
2025-01-21T11:39:36.3362562Z    Knob: ProcessHandlerSecureArguments = false Source: $(AZP_75787_ENABLE_NEW_LOGIC) 
2025-01-21T11:39:36.3364003Z    Knob: ProcessHandlerSecureArguments = false Source: $(AZP_75787_ENABLE_NEW_LOGIC_LOG) 
2025-01-21T11:39:36.3365673Z    Knob: ProcessHandlerTelemetry = true Source: $(AZP_75787_ENABLE_COLLECT) 
2025-01-21T11:39:36.3366985Z    Knob: UseNewNodeHandlerTelemetry = True Source: $(DistributedTask.Agent.USENEWNODEHANDLERTELEMETRY) 
2025-01-21T11:39:36.3368575Z    Knob: ProcessHandlerEnableNewLogic = true Source: $(AZP_75787_ENABLE_NEW_PH_LOGIC) 
2025-01-21T11:39:36.3371327Z    Knob: EnableResourceMonitorDebugOutput = true Source: $(AZP_ENABLE_RESOURCE_MONITOR_DEBUG_OUTPUT) 
2025-01-21T11:39:36.3372725Z    Knob: EnableResourceUtilizationWarnings = true Source: $(AZP_ENABLE_RESOURCE_UTILIZATION_WARNINGS) 
2025-01-21T11:39:36.3374648Z    Knob: IgnoreVSTSTaskLib = true Source: $(AZP_AGENT_IGNORE_VSTSTASKLIB) 
2025-01-21T11:39:36.3376073Z    Knob: FailJobWhenAgentDies = true Source: $(FAIL_JOB_WHEN_AGENT_DIES) 
2025-01-21T11:39:36.3378649Z    Knob: CheckForTaskDeprecation = true Source: $(AZP_AGENT_CHECK_FOR_TASK_DEPRECATION) 
2025-01-21T11:39:36.3380621Z    Knob: CheckIfTaskNodeRunnerIsDeprecated246 = True Source: $(DistributedTask.Agent.CheckIfTaskNodeRunnerIsDeprecated246) 
2025-01-21T11:39:36.3382360Z    Knob: UseNode20ToStartContainer = True Source: $(DistributedTask.Agent.UseNode20ToStartContainer) 
2025-01-21T11:39:36.3383979Z    Knob: LogTaskNameInUserAgent = true Source: $(AZP_AGENT_LOG_TASKNAME_IN_USERAGENT) 
2025-01-21T11:39:36.3385296Z    Knob: UseFetchFilterInCheckoutTask = true Source: $(AGENT_USE_FETCH_FILTER_IN_CHECKOUT_TASK) 
2025-01-21T11:39:36.3387096Z    Knob: Rosetta2Warning = true Source: $(ROSETTA2_WARNING) 
2025-01-21T11:39:36.3389699Z    Knob: AddForceCredentialsToGitCheckout = True Source: $(DistributedTask.Agent.AddForceCredentialsToGitCheckout) 
2025-01-21T11:39:36.3391545Z Finished checking job knob settings.
2025-01-21T11:39:36.3912820Z ##[debug]Log plugin 'TestResultLogPlugin' is disabled.
2025-01-21T11:39:36.3914880Z ##[debug]Log plugin 'TestFilePublisherPlugin' is disabled.
2025-01-21T11:39:36.3916683Z Start tracking orphan processes.
2025-01-21T11:39:36.4153597Z ##[section]Finishing: Initialize job
2025-01-21T11:39:36.4249040Z ##[section]Async Command Start: DetectDockerContainer
2025-01-21T11:39:36.4250362Z ##[section]Async Command End: DetectDockerContainer
2025-01-21T11:39:36.4252374Z ##[section]Async Command Start: DetectDockerContainer
2025-01-21T11:39:36.4253287Z ##[section]Async Command End: DetectDockerContainer
2025-01-21T11:39:36.4336891Z ##[debug]Evaluating condition for step: 'Checkout <repo>@sonar-develop to s'
2025-01-21T11:39:36.4388168Z ##[debug]Evaluating: SucceededNode()
2025-01-21T11:39:36.4397079Z ##[debug]Evaluating SucceededNode:
2025-01-21T11:39:36.4440147Z ##[debug]=> True
2025-01-21T11:39:36.4453491Z ##[debug]Result: True
2025-01-21T11:39:36.4483996Z ##[section]Starting: Checkout <repo>@sonar-develop to s
2025-01-21T11:39:36.4639231Z ==============================================================================
2025-01-21T11:39:36.4641360Z Task         : Get sources
2025-01-21T11:39:36.4642154Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.
2025-01-21T11:39:36.4642660Z Version      : 1.0.0
2025-01-21T11:39:36.4643418Z Author       : Microsoft
2025-01-21T11:39:36.4644245Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199)
2025-01-21T11:39:36.4644743Z ==============================================================================
2025-01-21T11:39:37.3193695Z ##[debug]Processed: ##vso[telemetry.publish area=AzurePipelinesAgent;feature=Checkout]{"RepoType":"Git","HostOS":"Linux"}
2025-01-21T11:39:37.3209233Z ##[debug]Processed: ##vso[plugininternal.updaterepositorypath alias=self;]/home/vsts/work/1/s
2025-01-21T11:39:37.3212299Z ##[debug]Repository requires to be placed at '/home/vsts/work/1/s', current location is '/home/vsts/work/1/s'
2025-01-21T11:39:37.3213550Z Syncing repository: <repo> (Git)
2025-01-21T11:39:37.3216755Z ##[debug]repository url=https://<git_URL> Backend/_git/<repo>
2025-01-21T11:39:37.3238688Z ##[debug]targetPath=/home/vsts/work/1/s
2025-01-21T11:39:37.3240308Z ##[debug]sourceBranch=refs/heads/sonar-develop
2025-01-21T11:39:37.3241834Z ##[debug]sourceVersion=token
2025-01-21T11:39:37.3243387Z ##[debug]clean=False
2025-01-21T11:39:37.3244782Z ##[debug]checkoutSubmodules=False
2025-01-21T11:39:37.3246239Z ##[debug]checkoutNestedSubmodules=False
2025-01-21T11:39:37.3247693Z ##[debug]exposeCred=False
2025-01-21T11:39:37.3249104Z ##[debug]fetchDepth=1
2025-01-21T11:39:37.3250453Z ##[debug]fetchFilter=
2025-01-21T11:39:37.3251810Z ##[debug]fetchTags=True
2025-01-21T11:39:37.3253245Z ##[debug]gitLfsSupport=False
2025-01-21T11:39:37.3254709Z ##[debug]acceptUntrustedCerts=False
2025-01-21T11:39:37.3256519Z ##[debug]sparseCheckout=False
2025-01-21T11:39:37.3257937Z ##[debug]schannelSslBackend=False
2025-01-21T11:39:37.3259345Z ##[debug]Which: 'git'
2025-01-21T11:39:37.3260741Z ##[debug]Location: '{matches.First()}'
2025-01-21T11:39:37.3262160Z ##[debug]Which: 'git-lfs'
2025-01-21T11:39:37.3263580Z ##[debug]Location: '{matches.First()}'
2025-01-21T11:39:37.3264960Z ##[debug]Get git version.
2025-01-21T11:39:37.3265931Z ##[command]git version
2025-01-21T11:39:37.3267201Z ##[debug]Starting process:
2025-01-21T11:39:37.3268602Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.3269992Z ##[debug]  Arguments: 'version'
2025-01-21T11:39:37.3271410Z ##[debug]  Working directory: '/home/vsts/work'
2025-01-21T11:39:37.3272913Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.3274509Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.3275999Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.3277449Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.3278888Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.3280344Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.3281751Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.3283223Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.3284718Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.3286183Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.3287640Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.3289094Z ##[debug]Updated oom_score_adj to 500 for PID: 1592.
2025-01-21T11:39:37.3291079Z ##[debug]Process started with process id 1592, waiting for process exit.
2025-01-21T11:39:37.3293826Z ##[debug]Exited process 1592 with exit code 0
2025-01-21T11:39:37.3295504Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.3297458Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.3299475Z ##[debug]Finished process 1592 with exit code 0, and elapsed time 00:00:00.0961789.
2025-01-21T11:39:37.3300553Z git version 2.47.1
2025-01-21T11:39:37.3301719Z ##[debug]Detect git version: 2.47.1.
2025-01-21T11:39:37.3303180Z ##[debug]Get git-lfs version.
2025-01-21T11:39:37.3304090Z ##[command]git lfs version
2025-01-21T11:39:37.3305233Z ##[debug]Starting process:
2025-01-21T11:39:37.3306585Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.3307968Z ##[debug]  Arguments: 'lfs version'
2025-01-21T11:39:37.3309379Z ##[debug]  Working directory: '/home/vsts/work'
2025-01-21T11:39:37.3310808Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.3312254Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.3313815Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.3315228Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.3316635Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.3318106Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.3319575Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.3321049Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.3322561Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.3324016Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.3325443Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.3326979Z ##[debug]Updated oom_score_adj to 500 for PID: 1599.
2025-01-21T11:39:37.3328528Z ##[debug]Process started with process id 1599, waiting for process exit.
2025-01-21T11:39:37.3989832Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4012536Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4015295Z ##[debug]Exited process 1599 with exit code 0
2025-01-21T11:39:37.4020122Z ##[debug]Finished process 1599 with exit code 0, and elapsed time 00:00:00.1001691.
2025-01-21T11:39:37.4022138Z git-lfs/3.6.0 (GitHub; linux amd64; go 1.23.1)
2025-01-21T11:39:37.4024329Z ##[debug]Detect git-lfs version: '3.6.0'.
2025-01-21T11:39:37.4025866Z ##[debug]Set git useragent to: git/2.47.1 (vsts-agent-git/4.248.0).
2025-01-21T11:39:37.4106400Z ##[debug]Checking if the repo on /home/vsts/work/1/s matches the expected repository origin URL. expected Url: https://<git_URL>%repo/_git/<repo>
2025-01-21T11:39:37.4108790Z ##[debug]Repository is not found since '.git' directory does not exist under. /home/vsts/work/1/s
2025-01-21T11:39:37.4267716Z ##[debug]Init git repository at: /home/vsts/work/1/s.
2025-01-21T11:39:37.4276526Z ##[command]git init "/home/vsts/work/1/s"
2025-01-21T11:39:37.4278250Z ##[debug]Starting process:
2025-01-21T11:39:37.4280636Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4282360Z ##[debug]  Arguments: 'init "/home/vsts/work/1/s"'
2025-01-21T11:39:37.4284075Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4285778Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4288231Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4290324Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4292051Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4293840Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4298434Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4300384Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4301857Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4303377Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4306127Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4307969Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4309874Z ##[debug]Updated oom_score_adj to 500 for PID: 1610.
2025-01-21T11:39:37.4311398Z ##[debug]Process started with process id 1610, waiting for process exit.
2025-01-21T11:39:37.4451091Z hint: Using 'master' as the name for the initial branch. This default branch name
2025-01-21T11:39:37.4452572Z hint: is subject to change. To configure the initial branch name to use in all
2025-01-21T11:39:37.4453479Z hint: of your new repositories, which will suppress this warning, call:
2025-01-21T11:39:37.4454269Z hint:
2025-01-21T11:39:37.4455042Z hint: 	git config --global init.defaultBranch <name>
2025-01-21T11:39:37.4456576Z hint:
2025-01-21T11:39:37.4457371Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2025-01-21T11:39:37.4458279Z hint: 'development'. The just-created branch can be renamed via this command:
2025-01-21T11:39:37.4459036Z hint:
2025-01-21T11:39:37.4461139Z hint: 	git branch -m <name>
2025-01-21T11:39:37.4464141Z Initialized empty Git repository in /home/vsts/work/1/s/.git/
2025-01-21T11:39:37.4465918Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4467404Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4471458Z ##[debug]Exited process 1610 with exit code 0
2025-01-21T11:39:37.4473501Z ##[debug]Finished process 1610 with exit code 0, and elapsed time 00:00:00.0185488.
2025-01-21T11:39:37.4485588Z ##[debug]Add git remote: origin to url: https://<git_URL>%repo/_git/<repo> for repository under: /home/vsts/work/1/s.
2025-01-21T11:39:37.4487020Z ##[command]git remote add origin https://<git_URL>%AZP25repo/_git/<repo>
2025-01-21T11:39:37.4488542Z ##[debug]Starting process:
2025-01-21T11:39:37.4494246Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4496164Z ##[debug]  Arguments: 'remote add origin https://<git_URL>%repo/_git/<repo>'
2025-01-21T11:39:37.4498048Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4499659Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4501095Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4502558Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4504142Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4505772Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4508259Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4509842Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4511311Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4512810Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4514299Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4515741Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4517259Z ##[debug]Updated oom_score_adj to 500 for PID: 1611.
2025-01-21T11:39:37.4518792Z ##[debug]Process started with process id 1611, waiting for process exit.
2025-01-21T11:39:37.4538235Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4558616Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4561098Z ##[debug]Exited process 1611 with exit code 0
2025-01-21T11:39:37.4563802Z ##[debug]Finished process 1611 with exit code 0, and elapsed time 00:00:00.0051162.
2025-01-21T11:39:37.4566057Z ##[debug]Show the working tree status for repository at /home/vsts/work/1/s.
2025-01-21T11:39:37.4567485Z ##[command]git status
2025-01-21T11:39:37.4568993Z ##[debug]Starting process:
2025-01-21T11:39:37.4570821Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4572677Z ##[debug]  Arguments: 'status'
2025-01-21T11:39:37.4574407Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4576491Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4578280Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4580319Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4582178Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4584518Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4586155Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4588154Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4589843Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4591362Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4592826Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4595048Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4597051Z ##[debug]Updated oom_score_adj to 500 for PID: 1612.
2025-01-21T11:39:37.4598701Z ##[debug]Process started with process id 1612, waiting for process exit.
2025-01-21T11:39:37.4610310Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4611383Z On branch master
2025-01-21T11:39:37.4611662Z 
2025-01-21T11:39:37.4612246Z No commits yet
2025-01-21T11:39:37.4612523Z 
2025-01-21T11:39:37.4653291Z nothing to commit (create/copy files and use "git add" to track)
2025-01-21T11:39:37.4654863Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4656674Z ##[debug]Exited process 1612 with exit code 0
2025-01-21T11:39:37.4658319Z ##[debug]Finished process 1612 with exit code 0, and elapsed time 00:00:00.0059871.
2025-01-21T11:39:37.4665538Z ##[debug]Processed: ##vso[task.setprogress value=0]Starting fetch...
2025-01-21T11:39:37.4667891Z ##[debug]Disable git auto garbage collection.
2025-01-21T11:39:37.4675222Z ##[command]git config gc.auto 0
2025-01-21T11:39:37.4676762Z ##[debug]Starting process:
2025-01-21T11:39:37.4678175Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4679556Z ##[debug]  Arguments: 'config gc.auto 0'
2025-01-21T11:39:37.4681006Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4682438Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4684067Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4685620Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4687479Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4689043Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4690486Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4691916Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4693791Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4695260Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4702807Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4704463Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4706094Z ##[debug]Updated oom_score_adj to 500 for PID: 1613.
2025-01-21T11:39:37.4707790Z ##[debug]Process started with process id 1613, waiting for process exit.
2025-01-21T11:39:37.4709567Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4711970Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4713615Z ##[debug]Exited process 1613 with exit code 0
2025-01-21T11:39:37.4715215Z ##[debug]Finished process 1613 with exit code 0, and elapsed time 00:00:00.0037928.
2025-01-21T11:39:37.4716798Z ##[debug]Set git config core.longpaths true
2025-01-21T11:39:37.4717760Z ##[command]git config core.longpaths true
2025-01-21T11:39:37.4718938Z ##[debug]Starting process:
2025-01-21T11:39:37.4720279Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4721705Z ##[debug]  Arguments: 'config core.longpaths true'
2025-01-21T11:39:37.4723147Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4725064Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4726679Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4728430Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4730583Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4731969Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4735192Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4737786Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4739126Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4741093Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4742796Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4744249Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4745816Z ##[debug]Updated oom_score_adj to 500 for PID: 1614.
2025-01-21T11:39:37.4747336Z ##[debug]Process started with process id 1614, waiting for process exit.
2025-01-21T11:39:37.4749039Z ##[debug]Checking git config http.https://<git_URL>%repo/_git/<repo>.extraheader exist or not
2025-01-21T11:39:37.4750441Z ##[command]git config --get-all http.https://<git_URL>%AZP25repo/_git/<repo>.extraheader
2025-01-21T11:39:37.4751833Z ##[debug]Starting process:
2025-01-21T11:39:37.4753182Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4773138Z ##[debug]  Arguments: 'config --get-all http.https://<git_URL>%repo/_git/<repo>.extraheader'
2025-01-21T11:39:37.4775943Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4778902Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4780934Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4782406Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4783811Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4785219Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4786662Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4788320Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4790498Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4792156Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4793608Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4795144Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4797674Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4799317Z ##[debug]Updated oom_score_adj to 500 for PID: 1615.
2025-01-21T11:39:37.4800845Z ##[debug]Process started with process id 1615, waiting for process exit.
2025-01-21T11:39:37.4802335Z ##[debug]Exited process 1615 with exit code 1
2025-01-21T11:39:37.4803766Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4805183Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4806760Z ##[debug]Finished process 1615 with exit code 1, and elapsed time 00:00:00.0044087.
2025-01-21T11:39:37.4808346Z ##[debug]Checking git config http.extraheader exist or not
2025-01-21T11:39:37.4809458Z ##[command]git config --get-all http.extraheader
2025-01-21T11:39:37.4810646Z ##[debug]Starting process:
2025-01-21T11:39:37.4811983Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4814376Z ##[debug]  Arguments: 'config --get-all http.extraheader'
2025-01-21T11:39:37.4816470Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4817959Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4819500Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4821102Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4824992Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4834905Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4851811Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4853387Z ##[debug]Exited process 1614 with exit code 0
2025-01-21T11:39:37.4855560Z ##[debug]Finished process 1614 with exit code 0, and elapsed time 00:00:00.0138500.
2025-01-21T11:39:37.4857899Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4859810Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4861254Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4863025Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4865824Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4867474Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4871814Z ##[debug]Updated oom_score_adj to 500 for PID: 1616.
2025-01-21T11:39:37.4873619Z ##[debug]Process started with process id 1616, waiting for process exit.
2025-01-21T11:39:37.4892620Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4894152Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4897701Z ##[debug]Exited process 1616 with exit code 1
2025-01-21T11:39:37.4899939Z ##[debug]Finished process 1616 with exit code 1, and elapsed time 00:00:00.0034015.
2025-01-21T11:39:37.4904919Z ##[debug]Checking git config .*extraheader exist or not
2025-01-21T11:39:37.4906718Z ##[command]git config --get-regexp .*extraheader
2025-01-21T11:39:37.4908796Z ##[debug]Starting process:
2025-01-21T11:39:37.4910661Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.4912359Z ##[debug]  Arguments: 'config --get-regexp .*extraheader'
2025-01-21T11:39:37.4915807Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.4917796Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.4920343Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.4969063Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.4970561Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.4971999Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.4974238Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.4975953Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.4977615Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.4979262Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.4980713Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.4982152Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.4983600Z ##[debug]Updated oom_score_adj to 500 for PID: 1617.
2025-01-21T11:39:37.4985432Z ##[debug]Process started with process id 1617, waiting for process exit.
2025-01-21T11:39:37.4987080Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4988685Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.4990574Z ##[debug]Exited process 1617 with exit code 1
2025-01-21T11:39:37.4992127Z ##[debug]Finished process 1617 with exit code 1, and elapsed time 00:00:00.0037405.
2025-01-21T11:39:37.4994201Z ##[debug]Checking git config http.proxy exist or not
2025-01-21T11:39:37.4995401Z ##[command]git config --get-all http.proxy
2025-01-21T11:39:37.4996854Z ##[debug]Starting process:
2025-01-21T11:39:37.4998497Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.5000385Z ##[debug]  Arguments: 'config --get-all http.proxy'
2025-01-21T11:39:37.5001817Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.5003224Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.5004629Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.5006048Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.5008043Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.5009380Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.5011344Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.5012901Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.5015110Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.5029207Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.5031177Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.5032620Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.5035302Z ##[debug]Updated oom_score_adj to 500 for PID: 1619.
2025-01-21T11:39:37.5036974Z ##[debug]Process started with process id 1619, waiting for process exit.
2025-01-21T11:39:37.5038544Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.5040613Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.5042127Z ##[debug]Exited process 1619 with exit code 1
2025-01-21T11:39:37.5043772Z ##[debug]Finished process 1619 with exit code 1, and elapsed time 00:00:00.0031776.
2025-01-21T11:39:37.5045835Z ##[debug]Set git config http.version HTTP/1.1
2025-01-21T11:39:37.5047099Z ##[command]git config http.version HTTP/1.1
2025-01-21T11:39:37.5048710Z ##[debug]Starting process:
2025-01-21T11:39:37.5050681Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.5052097Z ##[debug]  Arguments: 'config http.version HTTP/1.1'
2025-01-21T11:39:37.5053558Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.5055115Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.5056822Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.5062500Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.5063923Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.5065659Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.5067260Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.5071591Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.5073084Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.5074832Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.5076607Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.5078180Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.5079718Z ##[debug]Updated oom_score_adj to 500 for PID: 1620.
2025-01-21T11:39:37.5086411Z ##[debug]Process started with process id 1620, waiting for process exit.
2025-01-21T11:39:37.5087888Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.5089277Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.5090989Z ##[debug]Exited process 1620 with exit code 0
2025-01-21T11:39:37.5092531Z ##[debug]Finished process 1620 with exit code 0, and elapsed time 00:00:00.0037763.
2025-01-21T11:39:37.5094327Z ##[debug]Set environment variable env_var_http.extraheader
2025-01-21T11:39:37.5095880Z ##[debug]fetchDepth : 1
2025-01-21T11:39:37.5100222Z ##[debug]fetchFilter : 
2025-01-21T11:39:37.5101588Z ##[debug]fetchByCommit : True
2025-01-21T11:39:37.5103035Z ##[debug]sourceVersion : token
2025-01-21T11:39:37.5105010Z ##[debug]fetchTags : True
2025-01-21T11:39:37.5108827Z ##[debug]Fetch git repository at: /home/vsts/work/1/s remote: origin.
2025-01-21T11:39:37.5110734Z ##[command]git --config-env=http.extraheader=env_var_http.extraheader fetch --force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1  +token:refs/remotes/origin/token
2025-01-21T11:39:37.5112622Z ##[debug]Starting process:
2025-01-21T11:39:37.5114319Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:37.5117942Z ##[debug]  Arguments: '--config-env=http.extraheader=env_var_http.extraheader fetch --force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1  +token:refs/remotes/origin/token'
2025-01-21T11:39:37.5120269Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:37.5121749Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:37.5123167Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:37.5124930Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:37.5126348Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:37.5127880Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:37.5129234Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:37.5130811Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:37.5132241Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:37.5133792Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:37.5135881Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:37.5138216Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:37.5140360Z ##[debug]Updated oom_score_adj to 500 for PID: 1621.
2025-01-21T11:39:37.5141907Z ##[debug]Process started with process id 1621, waiting for process exit.
2025-01-21T11:39:37.8940828Z remote: Azure Repos        
2025-01-21T11:39:37.8952525Z remote: 
2025-01-21T11:39:37.8954643Z remote: Found 147 objects to send. (3 ms)        
2025-01-21T11:39:37.9437997Z Receiving objects:   0% (1/147)
2025-01-21T11:39:37.9444987Z Receiving objects:   1% (2/147)
2025-01-21T11:39:37.9451139Z Receiving objects:   2% (3/147)
2025-01-21T11:39:37.9457702Z Receiving objects:   3% (5/147)
2025-01-21T11:39:37.9464398Z Receiving objects:   4% (6/147)
2025-01-21T11:39:37.9470474Z Receiving objects:   5% (8/147)
2025-01-21T11:39:37.9476383Z Receiving objects:   6% (9/147)
2025-01-21T11:39:37.9483206Z Receiving objects:   7% (11/147)
2025-01-21T11:39:37.9608733Z Receiving objects:   8% (12/147)
2025-01-21T11:39:37.9660040Z Receiving objects:   9% (14/147)
2025-01-21T11:39:37.9661274Z Receiving objects:  10% (15/147)
2025-01-21T11:39:37.9662509Z Receiving objects:  11% (17/147)
2025-01-21T11:39:37.9663536Z Receiving objects:  12% (18/147)
2025-01-21T11:39:37.9664463Z Receiving objects:  13% (20/147)
2025-01-21T11:39:37.9665464Z Receiving objects:  14% (21/147)
2025-01-21T11:39:37.9666382Z Receiving objects:  15% (23/147)
2025-01-21T11:39:37.9667323Z Receiving objects:  16% (24/147)
2025-01-21T11:39:37.9668213Z Receiving objects:  17% (25/147)
2025-01-21T11:39:37.9669178Z Receiving objects:  18% (27/147)
2025-01-21T11:39:37.9670073Z Receiving objects:  19% (28/147)
2025-01-21T11:39:37.9671000Z Receiving objects:  20% (30/147)
2025-01-21T11:39:37.9671883Z Receiving objects:  21% (31/147)
2025-01-21T11:39:37.9672847Z Receiving objects:  22% (33/147)
2025-01-21T11:39:37.9673745Z Receiving objects:  23% (34/147)
2025-01-21T11:39:37.9674678Z Receiving objects:  24% (36/147)
2025-01-21T11:39:37.9675570Z Receiving objects:  25% (37/147)
2025-01-21T11:39:37.9676649Z Receiving objects:  26% (39/147)
2025-01-21T11:39:37.9677761Z Receiving objects:  27% (40/147)
2025-01-21T11:39:37.9678859Z Receiving objects:  28% (42/147)
2025-01-21T11:39:37.9680989Z Receiving objects:  29% (43/147)
2025-01-21T11:39:37.9681787Z Receiving objects:  30% (45/147)
2025-01-21T11:39:37.9682470Z Receiving objects:  31% (46/147)
2025-01-21T11:39:37.9683149Z Receiving objects:  32% (48/147)
2025-01-21T11:39:37.9683835Z Receiving objects:  33% (49/147)
2025-01-21T11:39:37.9684508Z Receiving objects:  34% (50/147)
2025-01-21T11:39:37.9685176Z Receiving objects:  35% (52/147)
2025-01-21T11:39:37.9685845Z Receiving objects:  36% (53/147)
2025-01-21T11:39:37.9686535Z Receiving objects:  37% (55/147)
2025-01-21T11:39:37.9687212Z Receiving objects:  38% (56/147)
2025-01-21T11:39:37.9687878Z Receiving objects:  39% (58/147)
2025-01-21T11:39:37.9688717Z Receiving objects:  40% (59/147)
2025-01-21T11:39:37.9689359Z Receiving objects:  41% (61/147)
2025-01-21T11:39:37.9690188Z Receiving objects:  42% (62/147)
2025-01-21T11:39:37.9690854Z Receiving objects:  43% (64/147)
2025-01-21T11:39:37.9691523Z Receiving objects:  44% (65/147)
2025-01-21T11:39:37.9692212Z Receiving objects:  45% (67/147)
2025-01-21T11:39:37.9692882Z Receiving objects:  46% (68/147)
2025-01-21T11:39:37.9693705Z Receiving objects:  47% (70/147)
2025-01-21T11:39:37.9694348Z Receiving objects:  48% (71/147)
2025-01-21T11:39:37.9694990Z Receiving objects:  49% (73/147)
2025-01-21T11:39:37.9707412Z Receiving objects:  50% (74/147)
2025-01-21T11:39:37.9708178Z Receiving objects:  51% (75/147)
2025-01-21T11:39:37.9708881Z Receiving objects:  52% (77/147)
2025-01-21T11:39:37.9709934Z Receiving objects:  53% (78/147)
2025-01-21T11:39:37.9710625Z Receiving objects:  54% (80/147)
2025-01-21T11:39:37.9711297Z Receiving objects:  55% (81/147)
2025-01-21T11:39:37.9711964Z Receiving objects:  56% (83/147)
2025-01-21T11:39:37.9712630Z Receiving objects:  57% (84/147)
2025-01-21T11:39:37.9713986Z Receiving objects:  58% (86/147)
2025-01-21T11:39:37.9714744Z Receiving objects:  59% (87/147)
2025-01-21T11:39:37.9716420Z Receiving objects:  60% (89/147)
2025-01-21T11:39:37.9717135Z Receiving objects:  61% (90/147)
2025-01-21T11:39:37.9717810Z Receiving objects:  62% (92/147)
2025-01-21T11:39:37.9718784Z Receiving objects:  63% (93/147)
2025-01-21T11:39:37.9719530Z Receiving objects:  64% (95/147)
2025-01-21T11:39:37.9720251Z Receiving objects:  65% (96/147)
2025-01-21T11:39:37.9720945Z Receiving objects:  66% (98/147)
2025-01-21T11:39:37.9721618Z Receiving objects:  67% (99/147)
2025-01-21T11:39:37.9722396Z Receiving objects:  68% (100/147)
2025-01-21T11:39:37.9723068Z Receiving objects:  69% (102/147)
2025-01-21T11:39:37.9723735Z Receiving objects:  70% (103/147)
2025-01-21T11:39:37.9724408Z Receiving objects:  71% (105/147)
2025-01-21T11:39:37.9725078Z Receiving objects:  72% (106/147)
2025-01-21T11:39:37.9725786Z Receiving objects:  73% (108/147)
2025-01-21T11:39:37.9726592Z Receiving objects:  74% (109/147)
2025-01-21T11:39:37.9727288Z Receiving objects:  75% (111/147)
2025-01-21T11:39:37.9727972Z Receiving objects:  76% (112/147)
2025-01-21T11:39:37.9728644Z Receiving objects:  77% (114/147)
2025-01-21T11:39:37.9729310Z Receiving objects:  78% (115/147)
2025-01-21T11:39:37.9730003Z Receiving objects:  79% (117/147)
2025-01-21T11:39:37.9730678Z Receiving objects:  80% (118/147)
2025-01-21T11:39:37.9731352Z Receiving objects:  81% (120/147)
2025-01-21T11:39:37.9732026Z Receiving objects:  82% (121/147)
2025-01-21T11:39:37.9732693Z Receiving objects:  83% (123/147)
2025-01-21T11:39:37.9733377Z Receiving objects:  84% (124/147)
2025-01-21T11:39:37.9734052Z Receiving objects:  85% (125/147)
2025-01-21T11:39:37.9734733Z Receiving objects:  86% (127/147)
2025-01-21T11:39:37.9735395Z Receiving objects:  87% (128/147)
2025-01-21T11:39:37.9736448Z Receiving objects:  88% (130/147)
2025-01-21T11:39:37.9737098Z Receiving objects:  89% (131/147)
2025-01-21T11:39:37.9737748Z Receiving objects:  90% (133/147)
2025-01-21T11:39:37.9738394Z Receiving objects:  91% (134/147)
2025-01-21T11:39:37.9739044Z Receiving objects:  92% (136/147)
2025-01-21T11:39:37.9739710Z Receiving objects:  93% (137/147)
2025-01-21T11:39:37.9740433Z Receiving objects:  94% (139/147)
2025-01-21T11:39:37.9741079Z Receiving objects:  95% (140/147)
2025-01-21T11:39:37.9741723Z Receiving objects:  96% (142/147)
2025-01-21T11:39:37.9742586Z Receiving objects:  97% (143/147)
2025-01-21T11:39:37.9743476Z Receiving objects:  98% (145/147)
2025-01-21T11:39:37.9744384Z Receiving objects:  99% (146/147)
2025-01-21T11:39:37.9745076Z Receiving objects: 100% (147/147)
2025-01-21T11:39:37.9745855Z Receiving objects: 100% (147/147), 61.03 KiB | 6.10 MiB/s, done.
2025-01-21T11:39:37.9746568Z Resolving deltas:   0% (0/30)
2025-01-21T11:39:37.9747213Z Resolving deltas:   3% (1/30)
2025-01-21T11:39:37.9751277Z Resolving deltas:   6% (2/30)
2025-01-21T11:39:37.9752060Z Resolving deltas:  10% (3/30)
2025-01-21T11:39:37.9752729Z Resolving deltas:  13% (4/30)
2025-01-21T11:39:37.9753411Z Resolving deltas:  16% (5/30)
2025-01-21T11:39:37.9754065Z Resolving deltas:  20% (6/30)
2025-01-21T11:39:37.9754720Z Resolving deltas:  23% (7/30)
2025-01-21T11:39:37.9755378Z Resolving deltas:  26% (8/30)
2025-01-21T11:39:37.9756032Z Resolving deltas:  30% (9/30)
2025-01-21T11:39:37.9756707Z Resolving deltas:  33% (10/30)
2025-01-21T11:39:37.9757365Z Resolving deltas:  36% (11/30)
2025-01-21T11:39:37.9758035Z Resolving deltas:  40% (12/30)
2025-01-21T11:39:37.9758692Z Resolving deltas:  43% (13/30)
2025-01-21T11:39:37.9759345Z Resolving deltas:  46% (14/30)
2025-01-21T11:39:37.9759995Z Resolving deltas:  50% (15/30)
2025-01-21T11:39:37.9760649Z Resolving deltas:  53% (16/30)
2025-01-21T11:39:37.9761306Z Resolving deltas:  56% (17/30)
2025-01-21T11:39:37.9761970Z Resolving deltas:  60% (18/30)
2025-01-21T11:39:37.9762640Z Resolving deltas:  63% (19/30)
2025-01-21T11:39:37.9763446Z Resolving deltas:  66% (20/30)
2025-01-21T11:39:37.9764074Z Resolving deltas:  70% (21/30)
2025-01-21T11:39:37.9764891Z Resolving deltas:  73% (22/30)
2025-01-21T11:39:37.9765556Z Resolving deltas:  76% (23/30)
2025-01-21T11:39:37.9766188Z Resolving deltas:  80% (24/30)
2025-01-21T11:39:37.9766823Z Resolving deltas:  83% (25/30)
2025-01-21T11:39:37.9767816Z Resolving deltas:  86% (26/30)
2025-01-21T11:39:37.9768592Z Resolving deltas:  90% (27/30)
2025-01-21T11:39:37.9769222Z Resolving deltas:  93% (28/30)
2025-01-21T11:39:37.9770136Z Resolving deltas:  96% (29/30)
2025-01-21T11:39:37.9770796Z Resolving deltas: 100% (30/30)
2025-01-21T11:39:37.9771465Z Resolving deltas: 100% (30/30), done.
2025-01-21T11:39:37.9800420Z From https://<git_URL>%repo/_git/<repo>
2025-01-21T11:39:37.9801463Z  * [new ref]         token -> origin/token
2025-01-21T11:39:37.9802330Z  * [new tag]         releases/1.2   -> releases/1.2
2025-01-21T11:39:37.9807963Z  * [new tag]         releases/1.2.2 -> releases/1.2.2
2025-01-21T11:39:37.9808746Z  * [new tag]         releases/1.2.3 -> releases/1.2.3
2025-01-21T11:39:37.9809484Z  * [new tag]         releases/1.2.9 -> releases/1.2.9
2025-01-21T11:39:37.9810379Z  * [new tag]         releases/1.3   -> releases/1.3
2025-01-21T11:39:37.9811111Z  * [new tag]         releases/1.4.3 -> releases/1.4.3
2025-01-21T11:39:37.9888476Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.9894894Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:37.9903616Z ##[debug]Exited process 1621 with exit code 0
2025-01-21T11:39:37.9905622Z ##[debug]Finished process 1621 with exit code 0, and elapsed time 00:00:00.4816614.
2025-01-21T11:39:38.0829718Z ##[debug]Processed: ##vso[telemetry.publish area=AzurePipelinesAgent;feature=GitFetch]{"ElapsedTimeMilliseconds":"483","RefSpec":"+token:refs/remotes/origin/token","RemoteName":"origin","FetchDepth":"1","FetchFilter":"","FetchTags":"True","ExitCode":"0","Options":"--force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1  +token:refs/remotes/origin/token"}
2025-01-21T11:39:38.0836362Z ##[debug]Fetch git repository at: /home/vsts/work/1/s remote: origin.
2025-01-21T11:39:38.0837866Z ##[command]git --config-env=http.extraheader=env_var_http.extraheader fetch --force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1  +token
2025-01-21T11:39:38.0839610Z ##[debug]Starting process:
2025-01-21T11:39:38.0840977Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:38.0842798Z ##[debug]  Arguments: '--config-env=http.extraheader=env_var_http.extraheader fetch --force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1  +token'
2025-01-21T11:39:38.0845321Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:38.0847582Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:38.0849891Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:38.0851481Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:38.0852893Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:38.0854579Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:38.0856191Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:38.0857507Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:38.0859458Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:38.0860917Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:38.0862340Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:38.0863794Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:38.0865201Z ##[debug]Updated oom_score_adj to 500 for PID: 1635.
2025-01-21T11:39:38.0866819Z ##[debug]Process started with process id 1635, waiting for process exit.
2025-01-21T11:39:38.3552592Z remote: Azure Repos        
2025-01-21T11:39:38.3556601Z remote: 
2025-01-21T11:39:38.3564846Z remote: Found 0 objects to send. (0 ms)        
2025-01-21T11:39:38.3659400Z From https://<git_URL>%repo/_git/<repo>
2025-01-21T11:39:38.3661961Z  * branch            token -> FETCH_HEAD
2025-01-21T11:39:38.3787669Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:38.3789776Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:38.3791111Z ##[debug]Exited process 1635 with exit code 0
2025-01-21T11:39:38.3792597Z ##[debug]Finished process 1635 with exit code 0, and elapsed time 00:00:00.3824433.
2025-01-21T11:39:38.4872322Z ##[debug]Processed: ##vso[telemetry.publish area=AzurePipelinesAgent;feature=GitFetch]{"ElapsedTimeMilliseconds":"382","RefSpec":"+token","RemoteName":"origin","FetchDepth":"1","FetchFilter":"","FetchTags":"True","ExitCode":"0","Options":"--force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1  +token"}
2025-01-21T11:39:38.4876976Z ##[debug]Processed: ##vso[task.setprogress value=80]Starting checkout...
2025-01-21T11:39:38.4878609Z ##[debug]refFetchedByCommit : refs/remotes/origin/token
2025-01-21T11:39:38.4880125Z ##[debug]Checkout refs/remotes/origin/token.
2025-01-21T11:39:38.4881227Z ##[command]git checkout --progress --force refs/remotes/origin/token
2025-01-21T11:39:38.4882426Z ##[debug]Starting process:
2025-01-21T11:39:38.4883772Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:38.4885225Z ##[debug]  Arguments: 'checkout --progress --force refs/remotes/origin/token'
2025-01-21T11:39:38.4886637Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:38.4887896Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:38.4889174Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:38.4890471Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:38.4891710Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:38.4892971Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:38.4894332Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:38.4895586Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:38.4897099Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:38.4899230Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:38.4900714Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:38.4902025Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:38.4903492Z ##[debug]Updated oom_score_adj to 500 for PID: 1646.
2025-01-21T11:39:38.4904815Z ##[debug]Process started with process id 1646, waiting for process exit.
2025-01-21T11:39:38.4905876Z Note: switching to 'refs/remotes/origin/token'.
2025-01-21T11:39:38.4906242Z 
2025-01-21T11:39:38.4906970Z You are in 'detached HEAD' state. You can look around, make experimental
2025-01-21T11:39:38.4907757Z changes and commit them, and you can discard any commits you make in this
2025-01-21T11:39:38.4908923Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:38.4909814Z state without impacting any branches by switching back to a branch.
2025-01-21T11:39:38.4910164Z 
2025-01-21T11:39:38.4910777Z If you want to create a new branch to retain commits you create, you may
2025-01-21T11:39:38.4911534Z do so (now or later) by using -c with the switch command. Example:
2025-01-21T11:39:38.4911849Z 
2025-01-21T11:39:38.4912388Z   git switch -c <new-branch-name>
2025-01-21T11:39:38.4912655Z 
2025-01-21T11:39:38.4913186Z Or undo this operation with:
2025-01-21T11:39:38.4913434Z 
2025-01-21T11:39:38.4914015Z   git switch -
2025-01-21T11:39:38.4914234Z 
2025-01-21T11:39:38.4914878Z Turn off this advice by setting config variable advice.detachedHead to false
2025-01-21T11:39:38.4915245Z 
2025-01-21T11:39:38.4916319Z HEAD is now at 9362576 Update build-sonar-repo-pipeline.yml for Azure Pipelines
2025-01-21T11:39:38.4917607Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:38.4918869Z ##[debug]Exited process 1646 with exit code 0
2025-01-21T11:39:38.4920472Z ##[debug]Finished process 1646 with exit code 0, and elapsed time 00:00:00.0118321.
2025-01-21T11:39:38.4931641Z ##[debug]Processed: ##vso[task.settaskvariable variable=repository;issecret=False;]self
2025-01-21T11:39:38.4933650Z ##[debug]Processed: ##vso[task.settaskvariable variable=preferPath;issecret=False;]true
2025-01-21T11:39:38.4951023Z ##[debug]Processed: ##vso[task.settaskvariable variable=repoUrlWithCred;issecret=True;]***
2025-01-21T11:39:38.4952668Z ##[debug]Show the working tree status for repository at /home/vsts/work/1/s.
2025-01-21T11:39:38.4953577Z ##[command]git status
2025-01-21T11:39:38.4954806Z ##[debug]Starting process:
2025-01-21T11:39:38.4956585Z ##[debug]  File name: '/usr/bin/git'
2025-01-21T11:39:38.4957813Z ##[debug]  Arguments: 'status'
2025-01-21T11:39:38.4959078Z ##[debug]  Working directory: '/home/vsts/work/1/s'
2025-01-21T11:39:38.4979064Z ##[debug]  Require exit code zero: 'False'
2025-01-21T11:39:38.4980648Z ##[debug]  Encoding web name:  ; code page: ''
2025-01-21T11:39:38.4982009Z ##[debug]  Force kill process on cancellation: 'False'
2025-01-21T11:39:38.4983269Z ##[debug]  Redirected STDIN: 'False'
2025-01-21T11:39:38.4984581Z ##[debug]  Persist current code page: 'False'
2025-01-21T11:39:38.4985840Z ##[debug]  Keep redirected STDIN open: 'False'
2025-01-21T11:39:38.4987111Z ##[debug]  High priority process: 'False'
2025-01-21T11:39:38.4988402Z ##[debug]  ContinueAfterCancelProcessTreeKillAttempt: 'False'
2025-01-21T11:39:38.4989751Z ##[debug]  Sigint timeout: '00:00:07.5000000'
2025-01-21T11:39:38.4991178Z ##[debug]  Sigterm timeout: '00:00:02.5000000'
2025-01-21T11:39:38.4992472Z ##[debug]  Try to use graceful shutdown: False
2025-01-21T11:39:38.4993770Z ##[debug]Updated oom_score_adj to 500 for PID: 1647.
2025-01-21T11:39:38.4995107Z ##[debug]Process started with process id 1647, waiting for process exit.
2025-01-21T11:39:38.4996079Z HEAD detached at origin/token
2025-01-21T11:39:38.4996781Z nothing to commit, working tree clean
2025-01-21T11:39:38.4997872Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:38.4999122Z ##[debug]STDOUT/STDERR stream read finished.
2025-01-21T11:39:38.5000395Z ##[debug]Exited process 1647 with exit code 0
2025-01-21T11:39:38.5001778Z ##[debug]Finished process 1647 with exit code 0, and elapsed time 00:00:00.0068051.
2025-01-21T11:39:38.5049735Z ##[section]Finishing: Checkout <repo>@sonar-develop to s
2025-01-21T11:39:38.5122048Z ##[debug]Evaluating condition for step: 'Microsoft Defender for DevOps Container Mapping Start'
2025-01-21T11:39:38.5124498Z ##[debug]Evaluating: always()
2025-01-21T11:39:38.5125317Z ##[debug]Evaluating always:
2025-01-21T11:39:38.5127931Z ##[debug]=> True
2025-01-21T11:39:38.5128918Z ##[debug]Result: True
2025-01-21T11:39:38.5129797Z ##[section]Starting: Microsoft Defender for DevOps Container Mapping Start
2025-01-21T11:39:38.5143791Z ==============================================================================
2025-01-21T11:39:38.5144199Z Task         : Microsoft Security DevOps
2025-01-21T11:39:38.5144480Z Description  : Run the Microsoft Security DevOps CLI for static analysis.
2025-01-21T11:39:38.5144828Z Version      : 1.17.1
2025-01-21T11:39:38.5145062Z Author       : Microsoft Corporation
2025-01-21T11:39:38.5145385Z Help         : Runs the [Microsoft Security DevOps CLI](https://aka.ms/msdo-nuget) for security analysis. Effective September 20th 2023, the Secret Scanning option (CredScan) within Microsoft Security DevOps (MSDO) Extension for Azure DevOps is deprecated. MSDO Secret Scanning is replaced by the [Configure GitHub Advanced Security for Azure DevOps features](https://learn.microsoft.com/en-us/azure/devops/repos/security/configure-github-advanced-security-features#set-up-secret-scanning) offering.
2025-01-21T11:39:38.5146607Z ==============================================================================
2025-01-21T11:39:38.7904128Z ##[debug]Using node path: /home/vsts/agents/4.248.0/externals/node16/bin/node
2025-01-21T11:39:39.0769737Z ##[debug]Agent environment resources - Disk: / Available 20979.84 MB out of 74244.74 MB, Memory: Used 985.00 MB out of 6921.00 MB, CPU: Usage 59.58%
2025-01-21T11:39:39.1297126Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp
2025-01-21T11:39:39.1304497Z ##[debug]loading inputs and endpoints
2025-01-21T11:39:39.1311241Z ##[debug]loading INPUT_COMMAND
2025-01-21T11:39:39.1335349Z ##[debug]loading INPUT_POLICY
2025-01-21T11:39:39.1336579Z ##[debug]loading INPUT_BREAK
2025-01-21T11:39:39.1337246Z ##[debug]loading INPUT_PUBLISH
2025-01-21T11:39:39.1337877Z ##[debug]loading INPUT_ARTIFACTNAME
2025-01-21T11:39:39.1341324Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2025-01-21T11:39:39.1342046Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2025-01-21T11:39:39.1342763Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2025-01-21T11:39:39.1346499Z ##[debug]loading SECRET_VSS_NUGET_ACCESSTOKEN
2025-01-21T11:39:39.1350780Z ##[debug]loading SECRET_SYSTEM_ACCESSTOKEN
2025-01-21T11:39:39.1354423Z ##[debug]loaded 10
2025-01-21T11:39:39.1359790Z ##[debug]Agent.ProxyUrl=undefined
2025-01-21T11:39:39.1363520Z ##[debug]Agent.CAInfo=undefined
2025-01-21T11:39:39.1364106Z ##[debug]Agent.ClientCert=undefined
2025-01-21T11:39:39.1364704Z ##[debug]Agent.SkipCertValidation=undefined
2025-01-21T11:39:39.1812598Z ##[debug]command=pre-job
2025-01-21T11:39:39.1813435Z ##[debug]Running Command: pre-job
2025-01-21T11:39:39.1818855Z ##[group]This task was injected as part of Microsoft Defender for DevOps enablement- https://go.microsoft.com/fwlink/?linkid=2231419
2025-01-21T11:39:39.1819406Z ##[section]:::::
2025-01-21T11:39:39.1823727Z ##[debug]set PREJOBSTARTTIME=2025-01-21T11:39:39.182Z
2025-01-21T11:39:39.1836995Z ##[debug]Processed: ##vso[task.setvariable variable=PREJOBSTARTTIME;isOutput=false;issecret=false;]2025-01-21T11:39:39.182Z
2025-01-21T11:39:39.1838348Z ##[endgroup]
2025-01-21T11:39:39.1930694Z ##[section]Finishing: Microsoft Defender for DevOps Container Mapping Start
2025-01-21T11:39:39.1962057Z ##[debug]Evaluating condition for step: 'Build'
2025-01-21T11:39:39.1963109Z ##[debug]Evaluating: SucceededNode()
2025-01-21T11:39:39.1963488Z ##[debug]Evaluating SucceededNode:
2025-01-21T11:39:39.1964318Z ##[debug]=> True
2025-01-21T11:39:39.1965126Z ##[debug]Result: True
2025-01-21T11:39:39.1965511Z ##[section]Starting: Build
2025-01-21T11:39:39.1977901Z ==============================================================================
2025-01-21T11:39:39.1978104Z Task         : Docker
2025-01-21T11:39:39.1978211Z Description  : Build or push Docker images, login or logout, start or stop containers, or run a Docker command
2025-01-21T11:39:39.1978401Z Version      : 2.248.1
2025-01-21T11:39:39.1978508Z Author       : Microsoft Corporation
2025-01-21T11:39:39.1978639Z Help         : https://aka.ms/azpipes-docker-tsg
2025-01-21T11:39:39.1978758Z ==============================================================================
2025-01-21T11:39:39.4381760Z ##[debug]Using node path: /home/vsts/agents/4.248.0/externals/node20_1/bin/node
2025-01-21T11:39:39.7127877Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp
2025-01-21T11:39:39.7146859Z ##[debug]loading inputs and endpoints
2025-01-21T11:39:39.7158216Z ##[debug]loading INPUT_CONTAINERREGISTRY
2025-01-21T11:39:39.7191862Z ##[debug]loading INPUT_REPOSITORY
2025-01-21T11:39:39.7222306Z ##[debug]loading INPUT_COMMAND
2025-01-21T11:39:39.7229029Z ##[debug]loading INPUT_DOCKERFILE
2025-01-21T11:39:39.7234843Z ##[debug]loading INPUT_BUILDCONTEXT
2025-01-21T11:39:39.7240915Z ##[debug]loading INPUT_TAGS
2025-01-21T11:39:39.7249672Z ##[debug]loading INPUT_ARGUMENTS
2025-01-21T11:39:39.7257729Z ##[debug]loading INPUT_ADDPIPELINEDATA
2025-01-21T11:39:39.7263850Z ##[debug]loading INPUT_ADDBASEIMAGEDATA
2025-01-21T11:39:39.7273024Z ##[debug]loading ENDPOINT_AUTH_token
2025-01-21T11:39:39.7280817Z ##[debug]loading ENDPOINT_AUTH_SCHEME_token
2025-01-21T11:39:39.7289305Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_token_LOGINSERVER
2025-01-21T11:39:39.7301155Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_token_ROLE
2025-01-21T11:39:39.7308015Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_token_SCOPE
2025-01-21T11:39:39.7314076Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_token_SERVICEPRINCIPALID
2025-01-21T11:39:39.7323993Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_token_TENANTID
2025-01-21T11:39:39.7330528Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_token_SERVICEPRINCIPALKEY
2025-01-21T11:39:39.7337852Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2025-01-21T11:39:39.7346696Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2025-01-21T11:39:39.7352207Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2025-01-21T11:39:39.7369052Z ##[debug]loading SECRET_VSS_NUGET_ACCESSTOKEN
2025-01-21T11:39:39.7376376Z ##[debug]loading SECRET_SYSTEM_ACCESSTOKEN
2025-01-21T11:39:39.7381945Z ##[debug]loaded 22
2025-01-21T11:39:39.7394969Z ##[debug]Agent.ProxyUrl=undefined
2025-01-21T11:39:39.7401178Z ##[debug]Agent.CAInfo=undefined
2025-01-21T11:39:39.7405156Z ##[debug]Agent.ClientCert=undefined
2025-01-21T11:39:39.7409244Z ##[debug]Agent.SkipCertValidation=undefined
2025-01-21T11:39:39.7605734Z ##[debug]check path : /home/vsts/work/_tasks/Docker_etoken/2.248.1/node_modules/azure-pipelines-tasks-docker-common/module.json
2025-01-21T11:39:39.7613102Z ##[debug]adding resource file: /home/vsts/work/_tasks/Docker_etoken/2.248.1/node_modules/azure-pipelines-tasks-docker-common/module.json
2025-01-21T11:39:39.7614112Z ##[debug]system.culture=en-US
2025-01-21T11:39:39.7639244Z ##[debug]Resource file has already set to: /home/vsts/work/_tasks/Docker_etoken/2.248.1/node_modules/azure-pipelines-tasks-docker-common/module.json
2025-01-21T11:39:39.8010119Z ##[debug]agent.proxyurl=undefined
2025-01-21T11:39:39.8010987Z ##[debug]VSTS_ARM_REST_IGNORE_SSL_ERRORS=undefined
2025-01-21T11:39:39.8011584Z ##[debug]AZURE_HTTP_USER_AGENT=VSTS_2b10a115-914d-4607-8305-46c432260223_build_258_0
2025-01-21T11:39:39.9824154Z ##[debug]Using msalv2
2025-01-21T11:39:40.0335174Z ##[debug]check path : /home/vsts/work/_tasks/Docker_etoken/2.248.1/node_modules/azure-pipelines-tasks-azure-arm-rest/module.json
2025-01-21T11:39:40.0336763Z ##[debug]adding resource file: /home/vsts/work/_tasks/Docker_etoken/2.248.1/node_modules/azure-pipelines-tasks-azure-arm-rest/module.json
2025-01-21T11:39:40.0337669Z ##[debug]system.culture=en-US
2025-01-21T11:39:40.0357357Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp
2025-01-21T11:39:40.0358409Z ##[debug]Resource file has already set to: /home/vsts/work/_tasks/Docker_etoken/2.248.1/node_modules/azure-pipelines-tasks-azure-arm-rest/module.json
2025-01-21T11:39:40.0366697Z ##[debug]check path : /home/vsts/work/_tasks/Docker_etoken/2.248.1/task.json
2025-01-21T11:39:40.0367646Z ##[debug]adding resource file: /home/vsts/work/_tasks/Docker_etoken/2.248.1/task.json
2025-01-21T11:39:40.0368395Z ##[debug]system.culture=en-US
2025-01-21T11:39:40.0382894Z ##[debug]containerRegistry=token
2025-01-21T11:39:40.0385865Z ##[debug]token data registrytype = ACR
2025-01-21T11:39:40.0389824Z ##[debug]token auth param loginServer = ***
2025-01-21T11:39:40.0390896Z ##[debug]Reading the acr registry in old versions
2025-01-21T11:39:40.0391689Z ##[debug]Reading the acr registry in kubernetesV1
2025-01-21T11:39:40.0397695Z ##[debug]Attempting to get endpoint authorization scheme...
2025-01-21T11:39:40.0400312Z ##[debug]token auth scheme = ServicePrincipal
2025-01-21T11:39:40.0403355Z ##[debug]token auth param serviceprincipalid = ***
2025-01-21T11:39:40.0405451Z ##[debug]token auth param serviceprincipalkey = ***
2025-01-21T11:39:40.0406310Z ##[debug]System.ServerType=Hosted
2025-01-21T11:39:40.0410960Z ##[debug]command=build
2025-01-21T11:39:40.0412773Z ##[debug]which 'docker'
2025-01-21T11:39:40.0428134Z ##[debug]found: '/usr/bin/docker'
2025-01-21T11:39:40.0430229Z ##[debug]DOCKER_CONFIG=undefined
2025-01-21T11:39:40.0458957Z ##[debug]Processed: ##vso[task.setvariable variable=CONTAINER_AUTHENTICATIONTOKEN;issecret=true;]***
2025-01-21T11:39:40.0459789Z ##[debug]agent.tempDirectory=/home/vsts/work/_temp
2025-01-21T11:39:40.0461147Z ##[debug]testing directory '/home/vsts/work/_temp/id/trust/private'
2025-01-21T11:39:40.0462001Z ##[debug]testing directory '/home/vsts/work/_temp/id/trust'
2025-01-21T11:39:40.0463018Z ##[debug]testing directory '/home/vsts/work/_temp/id'
2025-01-21T11:39:40.0463709Z ##[debug]mkdir '/home/vsts/work/_temp/id/trust'
2025-01-21T11:39:40.0464545Z ##[debug]mkdir '/home/vsts/work/_temp/id/trust/private'
2025-01-21T11:39:40.0468551Z ##[debug]Writing Docker config to temp file. File path: /home/vsts/work/_temp/id/config.json, Docker config: {"auths": { "***": {"auth": "***", "email": "ServicePrincipal@AzureRM" } }, "HttpHeaders":{"X-Meta-Source-Client":"VSTS"} }
2025-01-21T11:39:40.0510237Z ##[debug]Synced the file content to the disk. The content is {"auths": { "***": {"auth": "***", "email": "ServicePrincipal@AzureRM" } }, "HttpHeaders":{"X-Meta-Source-Client":"VSTS"} }.
2025-01-21T11:39:40.0511958Z ##[debug]Attempting to get endpoint authorization scheme...
2025-01-21T11:39:40.0512683Z ##[debug]token auth scheme = ServicePrincipal
2025-01-21T11:39:40.0513258Z ##[debug]SYSTEM_JOBID=id
2025-01-21T11:39:40.1620230Z ##[debug]Processed: ##vso[telemetry.publish area=TaskEndpointId;feature=DockerV2]{"command":"build","jobId":"id","scheme":"ServicePrincipal"}
2025-01-21T11:39:40.1621579Z ##[debug]System.TeamFoundationCollectionUri=<git_URL>
2025-01-21T11:39:40.1625533Z ##[debug]System.HostType=build
2025-01-21T11:39:40.1626210Z ##[debug]Dockerfile=/home/vsts/work/1/s/v1/token-Dockerfile
2025-01-21T11:39:40.1626813Z ##[debug]No pattern found in Docker filepath parameter
2025-01-21T11:39:40.1628801Z ##[debug]arguments=--build-arg FEED_ACCESSTOKEN=***
2025-01-21T11:39:40.1629624Z ##[debug]repository=repo/dev/token
2025-01-21T11:39:40.1630565Z ##[debug]containerRegistry=token
2025-01-21T11:39:40.1631201Z ##[debug]addPipelineData=true
2025-01-21T11:39:40.1631702Z ##[debug]addBaseImageData=true
2025-01-21T11:39:40.1633104Z ##[debug]SYSTEM_TEAMFOUNDATIONCOLLECTIONURI=<git_URL>
2025-01-21T11:39:40.1635008Z ##[debug]Reverse DNS name com.azure.dev
2025-01-21T11:39:40.1635593Z ##[debug]SYSTEM_TEAMFOUNDATIONCOLLECTIONURI=<git_URL>
2025-01-21T11:39:40.1636339Z ##[debug]SYSTEM_TEAMPROJECT=repo
2025-01-21T11:39:40.1636961Z ##[debug]BUILD_REPOSITORY_NAME=<repo>
2025-01-21T11:39:40.1637474Z ##[debug]SYSTEM_HOSTTYPE=build
2025-01-21T11:39:40.1638022Z ##[debug]BUILD_SOURCEVERSION=token
2025-01-21T11:39:40.1638646Z ##[debug]BUILD_REPOSITORY_URI=https://<git_URL>%repo/_git/<repo>
2025-01-21T11:39:40.1640664Z ##[debug]BUILD_SOURCEBRANCHNAME=sonar-develop
2025-01-21T11:39:40.1641275Z ##[debug]BUILD_DEFINITIONNAME=repo-sonar-repo-api-ms
2025-01-21T11:39:40.1641858Z ##[debug]BUILD_BUILDNUMBER=Release_sonar-develop_16365_20250121.1
2025-01-21T11:39:40.1646347Z ##[debug]BUILD_BUILDURI=vstfs:///Build/Build/16365
2025-01-21T11:39:40.1647191Z ##[debug]which '/usr/bin/docker'
2025-01-21T11:39:40.1648076Z ##[debug]found: '/usr/bin/docker'
2025-01-21T11:39:40.1648730Z ##[debug]/usr/bin/docker arg: pull
2025-01-21T11:39:40.1649273Z ##[debug]/usr/bin/docker arg: mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:40.1651341Z ##[debug]exec tool: /usr/bin/docker
2025-01-21T11:39:40.1652088Z ##[debug]arguments:
2025-01-21T11:39:40.1652562Z ##[debug]   pull
2025-01-21T11:39:40.1653252Z ##[debug]   mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:40.1653793Z [command]/usr/bin/docker pull mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:44.0749837Z ##[debug]Agent environment resources - Disk: / Available 20838.84 MB out of 74244.74 MB, Memory: Used 1046.00 MB out of 6921.00 MB, CPU: Usage 66.12%
2025-01-21T11:39:46.7416169Z 8.0: Pulling from dotnet/aspnet
2025-01-21T11:39:46.7416500Z af302e5c37e9: Pulling fs layer
2025-01-21T11:39:46.7416735Z 91ab5e0aabf0: Pulling fs layer
2025-01-21T11:39:46.7416961Z 1c1e4530721e: Pulling fs layer
2025-01-21T11:39:46.7417491Z 1f39ca6dcc3a: Pulling fs layer
2025-01-21T11:39:46.7417758Z ea20083aa801: Pulling fs layer
2025-01-21T11:39:46.7417989Z 64c242a4f561: Pulling fs layer
2025-01-21T11:39:46.7418219Z 1f39ca6dcc3a: Waiting
2025-01-21T11:39:46.7418613Z ea20083aa801: Waiting
2025-01-21T11:39:46.7418838Z 64c242a4f561: Waiting
2025-01-21T11:39:46.7419083Z 1c1e4530721e: Verifying Checksum
2025-01-21T11:39:46.7419316Z 1c1e4530721e: Download complete
2025-01-21T11:39:46.7419714Z 91ab5e0aabf0: Verifying Checksum
2025-01-21T11:39:46.7419954Z 91ab5e0aabf0: Download complete
2025-01-21T11:39:46.7420269Z af302e5c37e9: Verifying Checksum
2025-01-21T11:39:46.7420525Z af302e5c37e9: Download complete
2025-01-21T11:39:46.7420760Z ea20083aa801: Verifying Checksum
2025-01-21T11:39:46.7421174Z ea20083aa801: Download complete
2025-01-21T11:39:46.7421416Z 64c242a4f561: Verifying Checksum
2025-01-21T11:39:46.7421676Z 64c242a4f561: Download complete
2025-01-21T11:39:46.7421921Z 1f39ca6dcc3a: Verifying Checksum
2025-01-21T11:39:46.7422456Z 1f39ca6dcc3a: Download complete
2025-01-21T11:39:46.7422760Z af302e5c37e9: Pull complete
2025-01-21T11:39:46.7422995Z 91ab5e0aabf0: Pull complete
2025-01-21T11:39:46.7423243Z 1c1e4530721e: Pull complete
2025-01-21T11:39:46.7423482Z 1f39ca6dcc3a: Pull complete
2025-01-21T11:39:46.7423714Z ea20083aa801: Pull complete
2025-01-21T11:39:46.7423948Z 64c242a4f561: Pull complete
2025-01-21T11:39:46.7424291Z Digest: sha256:sha256---
2025-01-21T11:39:46.7424779Z Status: Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:46.7425106Z mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:46.7428986Z ##[debug]which '/usr/bin/docker'
2025-01-21T11:39:46.7429544Z ##[debug]found: '/usr/bin/docker'
2025-01-21T11:39:46.7430188Z ##[debug]/usr/bin/docker arg: inspect
2025-01-21T11:39:46.7430830Z ##[debug]/usr/bin/docker arg: mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:46.7431340Z ##[debug]exec tool: /usr/bin/docker
2025-01-21T11:39:46.7433578Z ##[debug]arguments:
2025-01-21T11:39:46.7434161Z ##[debug]   inspect
2025-01-21T11:39:46.7434694Z ##[debug]   mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:46.7435108Z [command]/usr/bin/docker inspect mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:46.7746145Z [
2025-01-21T11:39:46.7746974Z     {
2025-01-21T11:39:46.7747498Z         "Id": "sha256:sha256---",
2025-01-21T11:39:46.7748061Z         "RepoTags": [
2025-01-21T11:39:46.7748516Z             "mcr.microsoft.com/dotnet/aspnet:8.0"
2025-01-21T11:39:46.7748981Z         ],
2025-01-21T11:39:46.7749371Z         "RepoDigests": [
2025-01-21T11:39:46.7749892Z             "mcr.microsoft.com/dotnet/aspnet@sha256:sha256---"
2025-01-21T11:39:46.7750331Z         ],
2025-01-21T11:39:46.7750698Z         "Parent": "",
2025-01-21T11:39:46.7751083Z         "Comment": "buildkit.dockerfile.v0",
2025-01-21T11:39:46.7751730Z         "Created": "2025-01-14T19:01:00.357558022Z",
2025-01-21T11:39:46.7752624Z         "DockerVersion": "",
2025-01-21T11:39:46.7753063Z         "Author": "",
2025-01-21T11:39:46.7753546Z         "Config": {
2025-01-21T11:39:46.7753893Z             "Hostname": "",
2025-01-21T11:39:46.7804911Z             "Domainname": "",
2025-01-21T11:39:46.7805146Z             "User": "",
2025-01-21T11:39:46.7805381Z             "AttachStdin": false,
2025-01-21T11:39:46.7805600Z             "AttachStdout": false,
2025-01-21T11:39:46.7805817Z             "AttachStderr": false,
2025-01-21T11:39:46.7806028Z             "Tty": false,
2025-01-21T11:39:46.7806360Z             "OpenStdin": false,
2025-01-21T11:39:46.7806590Z             "StdinOnce": false,
2025-01-21T11:39:46.7806790Z             "Env": [
2025-01-21T11:39:46.7807041Z                 "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
2025-01-21T11:39:46.7807287Z                 "APP_UID=1654",
2025-01-21T11:39:46.7807515Z                 "ASPNETCORE_HTTP_PORTS=8080",
2025-01-21T11:39:46.7807797Z                 "DOTNET_RUNNING_IN_CONTAINER=true",
2025-01-21T11:39:46.7808043Z                 "DOTNET_VERSION=8.0.12",
2025-01-21T11:39:46.7808266Z                 "ASPNET_VERSION=8.0.12"
2025-01-21T11:39:46.7808619Z             ],
2025-01-21T11:39:46.7808985Z             "Cmd": [
2025-01-21T11:39:46.7809176Z                 "bash"
2025-01-21T11:39:46.7809356Z             ],
2025-01-21T11:39:46.7809540Z             "Image": "",
2025-01-21T11:39:46.7809914Z             "Volumes": null,
2025-01-21T11:39:46.7810136Z             "WorkingDir": "",
2025-01-21T11:39:46.7810341Z             "Entrypoint": null,
2025-01-21T11:39:46.7810549Z             "OnBuild": null,
2025-01-21T11:39:46.7810754Z             "Labels": null
2025-01-21T11:39:46.7810942Z         },
2025-01-21T11:39:46.7811158Z         "Architecture": "amd64",
2025-01-21T11:39:46.7811371Z         "Os": "linux",
2025-01-21T11:39:46.7811575Z         "Size": 217462250,
2025-01-21T11:39:46.7811782Z         "GraphDriver": {
2025-01-21T11:39:46.7812201Z             "Data": {
2025-01-21T11:39:46.7812900Z                 "LowerDir": "/var/lib/docker/overlay2/sha256---/diff:/var/lib/docker/overlay2/sha256---/diff:/var/lib/docker/overlay2/9ebd1b7d49a93c169c8c3ea1aa7c575133c6bc10732764a9ba42b733ee9597e4/diff:/var/lib/docker/overlay2/cedbd53ec71f973203f68251ec131ef6af83a028e75d2c8cb714ce7a9be34962/diff:/var/lib/docker/overlay2/a65396b9a3ba6174b9423dcee7fb15b6338d28146517ef13dabea16ebc46be5e/diff",
2025-01-21T11:39:46.7813609Z                 "MergedDir": "/var/lib/docker/overlay2/sha256---/merged",
2025-01-21T11:39:46.7814009Z                 "UpperDir": "/var/lib/docker/overlay2/sha256---/diff",
2025-01-21T11:39:46.7814386Z                 "WorkDir": "/var/lib/docker/overlay2/sha256---/work"
2025-01-21T11:39:46.7814708Z             },
2025-01-21T11:39:46.7814931Z             "Name": "overlay2"
2025-01-21T11:39:46.7815127Z         },
2025-01-21T11:39:46.7815319Z         "RootFS": {
2025-01-21T11:39:46.7815520Z             "Type": "layers",
2025-01-21T11:39:46.7815982Z             "Layers": [
2025-01-21T11:39:46.7816280Z                 "sha256:sha256---",
2025-01-21T11:39:46.7816622Z                 "sha256:sha256---",
2025-01-21T11:39:46.7816952Z                 "sha256:sha256---",
2025-01-21T11:39:46.7817283Z                 "sha256:sha256---",
2025-01-21T11:39:46.7817629Z                 "sha256:sha256---",
2025-01-21T11:39:46.7817964Z                 "sha256:sha256---"
2025-01-21T11:39:46.7818525Z             ]
2025-01-21T11:39:46.7818700Z         },
2025-01-21T11:39:46.7818886Z         "Metadata": {
2025-01-21T11:39:46.7819294Z             "LastTagTime": "0001-01-01T00:00:00Z"
2025-01-21T11:39:46.7819497Z         }
2025-01-21T11:39:46.7820099Z     }
2025-01-21T11:39:46.7820278Z ]
2025-01-21T11:39:46.7820941Z ##[debug]tags=16365
2025-01-21T11:39:46.7821428Z ##[debug]which '/usr/bin/docker'
2025-01-21T11:39:46.7821885Z ##[debug]found: '/usr/bin/docker'
2025-01-21T11:39:46.7823230Z ##[debug]/usr/bin/docker arg: build
2025-01-21T11:39:46.7823812Z ##[debug]/usr/bin/docker arg: ["-f","/home/vsts/work/1/s/v1/token-Dockerfile"]
2025-01-21T11:39:46.7824427Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.system.teamfoundationcollectionuri=<git_URL>"]
2025-01-21T11:39:46.7825023Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.system.teamproject=repo"]
2025-01-21T11:39:46.7825629Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.build.repository.name=<repo>"]
2025-01-21T11:39:46.7826257Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.build.sourceversion=token"]
2025-01-21T11:39:46.7826935Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.build.repository.uri=https://<git_URL>%repo/_git/<repo>"]
2025-01-21T11:39:46.7827610Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.build.sourcebranchname=sonar-develop"]
2025-01-21T11:39:46.7828199Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.build.definitionname=repo-sonar-repo-api-ms"]
2025-01-21T11:39:46.7828821Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.build.buildnumber=Release_sonar-develop_16365_20250121.1"]
2025-01-21T11:39:46.7829416Z ##[debug]/usr/bin/docker arg: ["--label","com.azure.dev.image.build.builduri=vstfs:///Build/Build/16365"]
2025-01-21T11:39:46.7830710Z ##[debug]/usr/bin/docker arg: ["--label","image.base.ref.name=mcr.microsoft.com/dotnet/aspnet:8.0"]
2025-01-21T11:39:46.7831743Z ##[debug]/usr/bin/docker arg: ["--label","image.base.digest=sha256:sha256---"]
2025-01-21T11:39:46.7834594Z ##[debug]/usr/bin/docker arg: --build-arg FEED_ACCESSTOKEN=***
2025-01-21T11:39:46.7835444Z ##[debug]/usr/bin/docker arg: ["-t","***/repo/dev/token:16365"]
2025-01-21T11:39:46.7835974Z ##[debug]buildContext=/home/vsts/work/1/s/**
2025-01-21T11:39:46.7836634Z ##[debug]SYSTEM_DEFAULTWORKINGDIRECTORY=/home/vsts/work/1/s
2025-01-21T11:39:46.7837305Z ##[debug]/usr/bin/docker arg: /home/vsts/work/1/s/v1
2025-01-21T11:39:46.7839296Z ##[debug]DOCKER_BUILDKIT=undefined
2025-01-21T11:39:46.7839866Z ##[debug]DOCKER_HOST=undefined
2025-01-21T11:39:46.7840338Z ##[debug]exec tool: /usr/bin/docker
2025-01-21T11:39:46.7840814Z ##[debug]arguments:
2025-01-21T11:39:46.7841257Z ##[debug]   build
2025-01-21T11:39:46.7841726Z ##[debug]   -f
2025-01-21T11:39:46.7842215Z ##[debug]   /home/vsts/work/1/s/v1/token-Dockerfile
2025-01-21T11:39:46.7842716Z ##[debug]   --label
2025-01-21T11:39:46.7843227Z ##[debug]   com.azure.dev.image.system.teamfoundationcollectionuri=<git_URL>
2025-01-21T11:39:46.7843746Z ##[debug]   --label
2025-01-21T11:39:46.7844229Z ##[debug]   com.azure.dev.image.system.teamproject=repo
2025-01-21T11:39:46.7844722Z ##[debug]   --label
2025-01-21T11:39:46.7845214Z ##[debug]   com.azure.dev.image.build.repository.name=<repo>
2025-01-21T11:39:46.7845723Z ##[debug]   --label
2025-01-21T11:39:46.7846229Z ##[debug]   com.azure.dev.image.build.sourceversion=token
2025-01-21T11:39:46.7846748Z ##[debug]   --label
2025-01-21T11:39:46.7847292Z ##[debug]   com.azure.dev.image.build.repository.uri=https://<git_URL>%repo/_git/<repo>
2025-01-21T11:39:46.7847851Z ##[debug]   --label
2025-01-21T11:39:46.7848602Z ##[debug]   com.azure.dev.image.build.sourcebranchname=sonar-develop
2025-01-21T11:39:46.7849101Z ##[debug]   --label
2025-01-21T11:39:46.7849601Z ##[debug]   com.azure.dev.image.build.definitionname=repo-sonar-repo-api-ms
2025-01-21T11:39:46.7850115Z ##[debug]   --label
2025-01-21T11:39:46.7850613Z ##[debug]   com.azure.dev.image.build.buildnumber=Release_sonar-develop_16365_20250121.1
2025-01-21T11:39:46.7851125Z ##[debug]   --label
2025-01-21T11:39:46.7851607Z ##[debug]   com.azure.dev.image.build.builduri=vstfs:///Build/Build/16365
2025-01-21T11:39:46.7852102Z ##[debug]   --label
2025-01-21T11:39:46.7852593Z ##[debug]   image.base.ref.name=mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:46.7853088Z ##[debug]   --label
2025-01-21T11:39:46.7853659Z ##[debug]   image.base.digest=sha256:sha256---
2025-01-21T11:39:46.7854296Z ##[debug]   --build-arg
2025-01-21T11:39:46.7857390Z ##[debug]   FEED_ACCESSTOKEN=***
2025-01-21T11:39:46.7857917Z ##[debug]   -t
2025-01-21T11:39:46.7858467Z ##[debug]   ***/repo/dev/token:16365
2025-01-21T11:39:46.7858959Z ##[debug]   /home/vsts/work/1/s/v1
2025-01-21T11:39:46.7861830Z [command]/usr/bin/docker build -f /home/vsts/work/1/s/v1/token-Dockerfile --label com.azure.dev.image.system.teamfoundationcollectionuri=<git_URL> --label com.azure.dev.image.system.teamproject=repo --label com.azure.dev.image.build.repository.name=<repo> --label com.azure.dev.image.build.sourceversion=token --label com.azure.dev.image.build.repository.uri=https://<git_URL>%repo/_git/<repo> --label com.azure.dev.image.build.sourcebranchname=sonar-develop --label com.azure.dev.image.build.definitionname=repo-sonar-repo-api-ms --label com.azure.dev.image.build.buildnumber=Release_sonar-develop_16365_20250121.1 --label com.azure.dev.image.build.builduri=vstfs:///Build/Build/16365 --label image.base.ref.name=mcr.microsoft.com/dotnet/aspnet:8.0 --label image.base.digest=sha256:sha256--- --build-arg FEED_ACCESSTOKEN=*** -t ***/repo/dev/token:16365 /home/vsts/work/1/s/v1
2025-01-21T11:39:47.5299823Z #0 building with "default" instance using docker driver
2025-01-21T11:39:47.5302883Z 
2025-01-21T11:39:47.5303437Z #1 [internal] load build definition from token-Dockerfile
2025-01-21T11:39:47.5303864Z #1 transferring dockerfile: 796B done
2025-01-21T11:39:47.5304320Z #1 DONE 0.0s
2025-01-21T11:39:47.5304539Z 
2025-01-21T11:39:47.5304906Z #2 [internal] load metadata for mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:47.5305273Z #2 DONE 0.0s
2025-01-21T11:39:47.5305469Z 
2025-01-21T11:39:47.5305809Z #3 [internal] load metadata for mcr.microsoft.com/dotnet/sdk:8.0
2025-01-21T11:39:47.6017013Z #3 DONE 0.2s
2025-01-21T11:39:47.7036443Z 
2025-01-21T11:39:47.7042043Z #4 [internal] load .dockerignore
2025-01-21T11:39:47.7044806Z #4 transferring context: 2B done
2025-01-21T11:39:47.7046201Z #4 DONE 0.0s
2025-01-21T11:39:47.7047396Z 
2025-01-21T11:39:47.7050100Z #5 [stage-1 1/3] FROM mcr.microsoft.com/dotnet/aspnet:8.0
2025-01-21T11:39:47.7052508Z #5 DONE 0.1s
2025-01-21T11:39:47.7054997Z 
2025-01-21T11:39:47.7057458Z #6 [build-env 1/6] FROM mcr.microsoft.com/dotnet/sdk:8.0@sha256:id
2025-01-21T11:39:47.7058764Z #6 resolve mcr.microsoft.com/dotnet/sdk:8.0@sha256:id 0.0s done
2025-01-21T11:39:47.8696969Z #6 ...
2025-01-21T11:39:47.8699798Z 
2025-01-21T11:39:47.8700155Z #7 [internal] load build context
2025-01-21T11:39:47.8700445Z #7 transferring context: 98.87kB 0.0s done
2025-01-21T11:39:47.8700687Z #7 DONE 0.1s
2025-01-21T11:39:47.8700767Z 
2025-01-21T11:39:47.8700968Z #8 [stage-1 2/3] WORKDIR /app
2025-01-21T11:39:47.8701237Z #8 DONE 0.0s
2025-01-21T11:39:47.8701581Z 
2025-01-21T11:39:47.8702012Z #6 [build-env 1/6] FROM mcr.microsoft.com/dotnet/sdk:8.0@sha256:id
2025-01-21T11:39:47.8702444Z #6 sha256:12bf911b7f4206a718e39759edf148080f143c067d7b0612d9462f1c3df178f4 2.22kB / 2.22kB done
2025-01-21T11:39:47.8702820Z #6 sha256:id 10.49MB / 174.24MB 0.2s
2025-01-21T11:39:47.8703197Z #6 sha256:id 4.19MB / 16.08MB 0.2s
2025-01-21T11:39:47.8703568Z #6 sha256:id 17.83MB / 30.91MB 0.2s
2025-01-21T11:39:47.8704020Z #6 sha256:id 1.08kB / 1.08kB done
2025-01-21T11:39:48.0521525Z #6 sha256:id 5.53kB / 5.53kB done
2025-01-21T11:39:48.0521991Z #6 sha256:id 28.31MB / 174.24MB 0.4s
2025-01-21T11:39:48.0522573Z #6 sha256:id 16.08MB / 16.08MB 0.4s done
2025-01-21T11:39:48.0524120Z #6 sha256:id 30.91MB / 30.91MB 0.4s
2025-01-21T11:39:48.1523283Z #6 sha256:id 40.89MB / 174.24MB 0.5s
2025-01-21T11:39:48.1529429Z #6 sha256:id 30.91MB / 30.91MB 0.4s done
2025-01-21T11:39:48.1535575Z #6 extracting sha256:id
2025-01-21T11:39:48.2525255Z #6 sha256:id 50.33MB / 174.24MB 0.6s
2025-01-21T11:39:48.3532151Z #6 sha256:id 60.40MB / 174.24MB 0.7s
2025-01-21T11:39:48.5422594Z #6 sha256:id 73.94MB / 174.24MB 0.8s
2025-01-21T11:39:48.6517265Z #6 sha256:id 102.61MB / 174.24MB 1.0s
2025-01-21T11:39:48.8934396Z #6 sha256:id 121.63MB / 174.24MB 1.2s
2025-01-21T11:39:48.9961142Z #6 sha256:id 132.12MB / 174.24MB 1.3s
2025-01-21T11:39:49.0758539Z ##[debug]Agent environment resources - Disk: / Available 20517.81 MB out of 74244.74 MB, Memory: Used 1041.00 MB out of 6921.00 MB, CPU: Usage 64.69%
2025-01-21T11:39:49.0966506Z #6 sha256:id 145.75MB / 174.24MB 1.4s
2025-01-21T11:39:49.2204228Z #6 sha256:id 157.29MB / 174.24MB 1.5s
2025-01-21T11:39:49.3380545Z #6 sha256:id 167.77MB / 174.24MB 1.6s
2025-01-21T11:39:49.9549342Z #6 sha256:id 174.24MB / 174.24MB 2.2s done
2025-01-21T11:39:50.1609356Z #6 extracting sha256:id 1.9s done
2025-01-21T11:39:50.3663906Z #6 extracting sha256:id
2025-01-21T11:39:54.0755975Z ##[debug]Agent environment resources - Disk: / Available 20517.81 MB out of 74244.74 MB, Memory: Used 1071.00 MB out of 6921.00 MB, CPU: Usage 77.05%
2025-01-21T11:39:55.4114980Z #6 extracting sha256:id 5.0s
2025-01-21T11:39:57.0324662Z #6 extracting sha256:id 6.5s done
2025-01-21T11:39:59.1327438Z #6 extracting sha256:id
2025-01-21T11:39:59.8793732Z #6 extracting sha256:id 0.6s done
2025-01-21T11:39:59.8794528Z #6 DONE 12.2s
2025-01-21T11:40:00.0596309Z 
2025-01-21T11:40:00.0597240Z #9 [build-env 2/6] WORKDIR /app
2025-01-21T11:40:00.0597740Z #9 DONE 0.0s
2025-01-21T11:40:00.0598277Z 
2025-01-21T11:40:00.0598978Z #10 [build-env 3/6] RUN curl -L https://raw.githubusercontent.com/Microsoft/artifacts-credprovider/master/helpers/installcredprovider.sh  | sh
2025-01-21T11:40:00.1817536Z ##[debug]Agent environment resources - Disk: / Available 20148.63 MB out of 74244.74 MB, Memory: Used 1034.00 MB out of 6921.00 MB, CPU: Usage 75.53%
2025-01-21T11:40:00.4023351Z #10 0.279   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2025-01-21T11:40:00.4023776Z #10 0.285                                  Dload  Upload   Total   Spent    Left  Speed
2025-01-21T11:40:00.4024031Z #10 0.285 
2025-01-21T11:40:00.4024300Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2025-01-21T11:40:00.4024642Z 100  3401  100  3401    0     0  56452      0 --:--:-- --:--:-- --:--:-- 56683
2025-01-21T11:40:00.4025000Z #10 0.343 INFO: Creating the nuget plugin directory (i.e. /root/.nuget/plugins). 
2025-01-21T11:40:00.4025418Z #10 0.343 Downloading from https://github.com/Microsoft/artifacts-credprovider/releases/latest/download/Microsoft.Net6.NuGet.CredentialProvider.tar.gz
2025-01-21T11:40:00.9269884Z #10 1.018 INFO: credential provider netcore plugin extracted to /root/.nuget/
2025-01-21T11:40:01.0380738Z #10 DONE 1.1s
2025-01-21T11:40:01.0381268Z 
2025-01-21T11:40:01.0381926Z #11 [build-env 4/6] COPY . ./
2025-01-21T11:40:01.1917693Z #11 DONE 0.1s
2025-01-21T11:40:01.1917823Z 
2025-01-21T11:40:01.1919041Z #12 [build-env 5/6] RUN dotnet restore
2025-01-21T11:40:02.7898194Z #12 1.748   Determining projects to restore...
2025-01-21T11:40:05.1837121Z ##[debug]Agent environment resources - Disk: / Available 20112.29 MB out of 74244.74 MB, Memory: Used 1172.00 MB out of 6921.00 MB, CPU: Usage 71.52%
2025-01-21T11:40:10.1843367Z ##[debug]Agent environment resources - Disk: / Available 20057.32 MB out of 74244.74 MB, Memory: Used 1211.00 MB out of 6921.00 MB, CPU: Usage 48.91%
2025-01-21T11:40:16.7599968Z ##[debug]Agent environment resources - Disk: / Available 20009.98 MB out of 74244.74 MB, Memory: Used 1231.00 MB out of 6921.00 MB, CPU: Usage 17.64%
2025-01-21T11:40:22.8681423Z ##[debug]Agent environment resources - Disk: / Available 19990.12 MB out of 74244.74 MB, Memory: Used 1246.00 MB out of 6921.00 MB, CPU: Usage 5.86%
2025-01-21T11:40:27.8660359Z ##[debug]Agent environment resources - Disk: / Available 19972.57 MB out of 74244.74 MB, Memory: Used 1249.00 MB out of 6921.00 MB, CPU: Usage 5.86%
2025-01-21T11:40:32.8679999Z ##[debug]Agent environment resources - Disk: / Available 19881.20 MB out of 74244.74 MB, Memory: Used 1278.00 MB out of 6921.00 MB, CPU: Usage 26.09%
2025-01-21T11:40:39.7069025Z ##[debug]Agent environment resources - Disk: / Available 19612.28 MB out of 74244.74 MB, Memory: Used 1291.00 MB out of 6921.00 MB, CPU: Usage 99.55%
2025-01-21T11:40:40.0711786Z #12 39.03 /app/ApiGateway/ApiGateway.csproj : warning NU1902: Package 'System.IdentityModel.Tokens.Jwt' 6.26.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-59j7-ghrg-fj52 [/app/ApiGateway.sln]
2025-01-21T11:40:40.3651629Z #12 39.32   Restored /app/ApiGateway/ApiGateway.csproj (in 36.94 sec).
2025-01-21T11:40:41.6426679Z #12 DONE 40.6s
2025-01-21T11:40:41.7942501Z 
2025-01-21T11:40:41.7943002Z #13 [build-env 6/6] RUN dotnet publish -c Release -o published
2025-01-21T11:40:43.3336244Z #13 1.691   Determining projects to restore...
2025-01-21T11:40:44.0510313Z #13 2.408 /app/ApiGateway/ApiGateway.csproj : warning NU1902: Package 'System.IdentityModel.Tokens.Jwt' 6.26.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-59j7-ghrg-fj52 [/app/ApiGateway.sln]
2025-01-21T11:40:44.2354382Z #13 2.418   All projects are up-to-date for restore.
2025-01-21T11:40:44.2355444Z #13 2.442 /usr/share/dotnet/sdk/8.0.405/Current/SolutionFile/ImportAfter/Microsoft.NET.Sdk.Solution.targets(36,5): warning NETSDK1194: The "--output" option isn't supported when building a solution. Specifying a solution-level output path results in all projects copying outputs to the same directory, which can lead to inconsistent builds. [/app/ApiGateway.sln]
2025-01-21T11:40:44.4352323Z #13 2.792 /app/ApiGateway/ApiGateway.csproj : warning NU1902: Package 'System.IdentityModel.Tokens.Jwt' 6.26.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-59j7-ghrg-fj52
2025-01-21T11:40:44.7062877Z ##[debug]Agent environment resources - Disk: / Available 19540.98 MB out of 74244.74 MB, Memory: Used 1186.00 MB out of 6921.00 MB, CPU: Usage 99.55%
2025-01-21T11:40:49.3436436Z #13 7.700 /app/ApiGateway/Middleware/MerchantBasicAuthenticationHandler.cs(16,148): warning CS0618: 'ISystemClock' is obsolete: 'Use TimeProvider instead.' [/app/ApiGateway/ApiGateway.csproj]
2025-01-21T11:40:49.3437448Z #13 7.700 /app/ApiGateway/Middleware/WalletBasicAuthenticationHandler.cs(15,146): warning CS0618: 'ISystemClock' is obsolete: 'Use TimeProvider instead.' [/app/ApiGateway/ApiGateway.csproj]
2025-01-21T11:40:49.3438312Z #13 7.700 /app/ApiGateway/Middleware/WalletBasicAuthenticationHandler.cs(17,13): warning CS0618: 'AuthenticationHandler<AuthenticationSchemeOptions>.AuthenticationHandler(IOptionsMonitor<AuthenticationSchemeOptions>, ILoggerFactory, UrlEncoder, ISystemClock)' is obsolete: 'ISystemClock is obsolete, use TimeProvider on AuthenticationSchemeOptions instead.' [/app/ApiGateway/ApiGateway.csproj]
2025-01-21T11:40:49.4970225Z #13 7.702 /app/ApiGateway/Middleware/MerchantBasicAuthenticationHandler.cs(18,13): warning CS0618: 'AuthenticationHandler<AuthenticationSchemeOptions>.AuthenticationHandler(IOptionsMonitor<AuthenticationSchemeOptions>, ILoggerFactory, UrlEncoder, ISystemClock)' is obsolete: 'ISystemClock is obsolete, use TimeProvider on AuthenticationSchemeOptions instead.' [/app/ApiGateway/ApiGateway.csproj]
2025-01-21T11:40:49.4973024Z #13 7.702 /app/ApiGateway/Middleware/MerchantBasicAuthenticationHandler.cs(49,17): warning ASP0019: Use IHeaderDictionary.Append or the indexer to append or set headers. IDictionary.Add will throw an ArgumentException when attempting to add a duplicate key. (https://aka.ms/aspnet/analyzers) [/app/ApiGateway/ApiGateway.csproj]
2025-01-21T11:40:49.7209290Z #13 8.078   ApiGateway -> /app/ApiGateway/bin/Release/net8.0/ApiGateway.dll
2025-01-21T11:40:50.0061126Z #13 8.363   ApiGateway -> /app/published/
2025-01-21T11:40:50.1544108Z #13 DONE 8.5s
2025-01-21T11:40:50.3138228Z 
2025-01-21T11:40:50.3138825Z #14 [stage-1 3/3] COPY --from=build-env /app/published .
2025-01-21T11:40:50.4296838Z #14 DONE 0.1s
2025-01-21T11:40:50.5817627Z 
2025-01-21T11:40:50.5818616Z #15 exporting to image
2025-01-21T11:40:50.5819219Z #15 exporting layers
2025-01-21T11:40:50.8081639Z ##[debug]Agent environment resources - Disk: / Available 19540.30 MB out of 74244.74 MB, Memory: Used 1367.00 MB out of 6921.00 MB, CPU: Usage 74.71%
2025-01-21T11:40:51.0164340Z #15 exporting layers 0.6s done
2025-01-21T11:40:51.0857338Z #15 writing image sha256:sha256--- done
2025-01-21T11:40:51.0858109Z #15 naming to ***/repo/dev/token:16365 done
2025-01-21T11:40:51.0858387Z #15 DONE 0.6s
2025-01-21T11:40:51.0902967Z 
2025-01-21T11:40:51.0929625Z ##[debug]Exit code 0 received from tool '/usr/bin/docker'
2025-01-21T11:40:51.0930217Z ##[debug]STDIO streams have closed for tool '/usr/bin/docker'
2025-01-21T11:40:51.0930731Z ##[debug]agent.tempDirectory=/home/vsts/work/_temp
2025-01-21T11:40:51.0938722Z ##[debug]Synced the file content to the disk. The content is .
2025-01-21T11:40:51.1015159Z ##[warning]No data was written into the file /home/vsts/work/_temp/task_outputs/build_1737459651092.txt
2025-01-21T11:40:51.1031396Z ##[debug]Processed: ##vso[task.issue type=warning;source=TaskInternal;correlationId=622b6e3b-45e5-4e6f-b882-091cf435e47b;]No data was written into the file /home/vsts/work/_temp/task_outputs/build_1737459651092.txt
2025-01-21T11:40:51.1032889Z ##[debug]Trying to logout from registry: ***
2025-01-21T11:40:51.1033414Z ##[debug]DOCKER_CONFIG=/home/vsts/work/_temp/id
2025-01-21T11:40:51.1035830Z ##[debug]agent.tempDirectory=/home/vsts/work/_temp
2025-01-21T11:40:51.1036735Z ##[debug]Found the Docker Config stored in the temp path. Docker config path: /home/vsts/work/_temp/id/config.json, Docker config: {"auths": { "***": {"auth": "***", "email": "ServicePrincipal@AzureRM" } }, "HttpHeaders":{"X-Meta-Source-Client":"VSTS"} }
2025-01-21T11:40:51.1037882Z ##[debug]Deleting Docker config directory. Path: /home/vsts/work/_temp/id/config.json
2025-01-21T11:40:51.1038597Z ##[debug]DOCKER_CONFIG=/home/vsts/work/_temp/id
2025-01-21T11:40:51.1039105Z ##[debug]agent.tempDirectory=/home/vsts/work/_temp
2025-01-21T11:40:51.1039659Z ##[debug]Deleting Docker config directory. Path: /home/vsts/work/_temp/id
2025-01-21T11:40:51.1097197Z ##[debug]set DOCKER_CONFIG=
2025-01-21T11:40:51.1098117Z ##[debug]Processed: ##vso[task.setvariable variable=DOCKER_CONFIG;isOutput=false;issecret=false;]
2025-01-21T11:40:51.1098700Z ##[debug]set DockerOutput=/home/vsts/work/_temp/task_outputs/build_1737459651092.txt
2025-01-21T11:40:51.1101664Z ##[debug]Processed: ##vso[task.setvariable variable=DockerOutput;isOutput=false;issecret=false;]/home/vsts/work/_temp/task_outputs/build_1737459651092.txt
2025-01-21T11:40:51.1102449Z ##[debug]task result: Succeeded
2025-01-21T11:40:51.1111633Z ##[debug]Processed: ##vso[task.complete result=Succeeded;]
2025-01-21T11:40:51.1165822Z ##[section]Finishing: Build
2025-01-21T11:40:51.1196092Z ##[debug]Evaluating condition for step: 'SonarQubePrepare'
2025-01-21T11:40:51.1197371Z ##[debug]Evaluating: SucceededNode()
2025-01-21T11:40:51.1197743Z ##[debug]Evaluating SucceededNode:
2025-01-21T11:40:51.1198273Z ##[debug]=> True
2025-01-21T11:40:51.1198636Z ##[debug]Result: True
2025-01-21T11:40:51.1199063Z ##[section]Starting: SonarQubePrepare
2025-01-21T11:40:51.1205586Z ==============================================================================
2025-01-21T11:40:51.1205761Z Task         : Prepare Analysis Configuration
2025-01-21T11:40:51.1205865Z Description  : Prepare SonarQube Server analysis configuration
2025-01-21T11:40:51.1206005Z Version      : 7.1.1
2025-01-21T11:40:51.1206113Z Author       : sonarsource
2025-01-21T11:40:51.1206220Z Help         : [More Information](https://docs.sonarsource.com/sonarqube/latest/analyzing-source-code/scanners/sonarqube-extension-for-azure-devops/)
2025-01-21T11:40:51.1206458Z ==============================================================================
2025-01-21T11:40:51.1804889Z ##[debug]Using node path: /home/vsts/agents/4.248.0/externals/node16/bin/node
2025-01-21T11:40:51.3310094Z ##[debug]system.debug=True
2025-01-21T11:40:51.3312425Z ##[debug]DistributedTask.Tasks.Node.SkipDebugLogsWhenDebugModeOff=True
2025-01-21T11:40:51.3400030Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp
2025-01-21T11:40:51.3411582Z ##[debug]loading inputs and endpoints
2025-01-21T11:40:51.3419784Z ##[debug]loading INPUT_SONARQUBE
2025-01-21T11:40:51.3437391Z ##[debug]loading INPUT_SCANNERMODE
2025-01-21T11:40:51.3437875Z ##[debug]loading INPUT_CONFIGMODE
2025-01-21T11:40:51.3442753Z ##[debug]loading INPUT_CONFIGFILE
2025-01-21T11:40:51.3448562Z ##[debug]loading INPUT_PROJECTKEY
2025-01-21T11:40:51.3458478Z ##[debug]loading INPUT_PROJECTNAME
2025-01-21T11:40:51.3462857Z ##[debug]loading INPUT_CLIPROJECTVERSION
2025-01-21T11:40:51.3469165Z ##[debug]loading INPUT_PROJECTVERSION
2025-01-21T11:40:51.3472293Z ##[debug]loading INPUT_CLISOURCES
2025-01-21T11:40:51.3476214Z ##[debug]loading INPUT_EXTRAPROPERTIES
2025-01-21T11:40:51.3479778Z ##[debug]loading ENDPOINT_AUTH_auth_token
2025-01-21T11:40:51.3485653Z ##[debug]loading ENDPOINT_AUTH_SCHEME_auth_token
2025-01-21T11:40:51.3489475Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_auth_token_USERNAME
2025-01-21T11:40:51.3494888Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2025-01-21T11:40:51.3497286Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2025-01-21T11:40:51.3500713Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2025-01-21T11:40:51.3508237Z ##[debug]loading SECRET_VSS_NUGET_ACCESSTOKEN
2025-01-21T11:40:51.3510329Z ##[debug]loading SECRET_SYSTEM_ACCESSTOKEN
2025-01-21T11:40:51.3512261Z ##[debug]loading SECRET_CONTAINER_AUTHENTICATIONTOKEN
2025-01-21T11:40:51.3514112Z ##[debug]loaded 19
2025-01-21T11:40:51.3522224Z ##[debug]Agent.ProxyUrl=undefined
2025-01-21T11:40:51.3523114Z ##[debug]Agent.CAInfo=undefined
2025-01-21T11:40:51.3523604Z ##[debug]Agent.ClientCert=undefined
2025-01-21T11:40:51.3524113Z ##[debug]Agent.SkipCertValidation=undefined
2025-01-21T11:40:51.3791671Z ##[debug]Agent.ProxyUrl=undefined
2025-01-21T11:40:51.3792217Z ##[debug]Agent.CAInfo=undefined
2025-01-21T11:40:51.3792982Z ##[debug]Agent.ClientCert=undefined
2025-01-21T11:40:51.3794109Z ##[debug]check path : /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/lib.json
2025-01-21T11:40:51.3798823Z ##[debug]adding resource file: /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/lib.json
2025-01-21T11:40:51.3799357Z ##[debug]system.culture=en-US
2025-01-21T11:40:51.4726352Z ##[debug]SonarQube=auth_token
2025-01-21T11:40:51.4727518Z ##[debug]auth_token=http://<sonar_url>:9000/
2025-01-21T11:40:51.4731248Z ##[debug]auth_token auth param apitoken = undefined
2025-01-21T11:40:51.4733912Z ##[debug]auth_token auth param username = ***
2025-01-21T11:40:51.4734680Z ##[debug]auth_token auth param password = undefined
2025-01-21T11:40:51.4735584Z ##[debug]organization=undefined
2025-01-21T11:40:51.4737425Z ##[debug]scannerMode=dotnet
2025-01-21T11:40:51.4741557Z ##[debug]projectKey=repo<repo>_token
2025-01-21T11:40:51.4744192Z ##[debug]projectName=repo-sonar-repo-api-ms
2025-01-21T11:40:51.4745708Z ##[debug]projectVersion=1.0
2025-01-21T11:40:51.4751638Z ##[debug]organization=undefined
2025-01-21T11:40:51.4752664Z ##[debug][DEBUG] SonarQube Server: API GET: '/api/server/version' with full URL "http://<IP>:9000/api/server/version" and query "undefined"
2025-01-21T11:40:51.6378610Z [INFO]  SonarQube Server: Server version: 24.12.0.100206
2025-01-21T11:40:51.6383315Z ##[debug]extraProperties=# Additional properties that will be passed to the scanner, 
# Put one key=value per line, example:
# sonar.exclusions=**/*.bin
2025-01-21T11:40:51.6432095Z ##[debug]System.TeamFoundationCollectionUri=<git_URL>
2025-01-21T11:40:51.6432696Z ##[debug]Build.Repository.Provider=TfsGit
2025-01-21T11:40:51.6433206Z ##[debug]System.PullRequest.PullRequestId=undefined
2025-01-21T11:40:51.6436599Z ##[debug]System.TeamFoundationCollectionUri=<git_URL>
2025-01-21T11:40:51.6437680Z ##[debug]Build.Repository.Provider=TfsGit
2025-01-21T11:40:51.6438849Z ##[debug]Build.SourceBranch=refs/heads/sonar-develop
2025-01-21T11:40:51.6445694Z ##[debug]SYSTEMVSSCONNECTION exists true
2025-01-21T11:40:51.8892770Z ##[debug]Build.Repository.Name=<repo>
2025-01-21T11:40:51.8893377Z ##[debug]System.TeamProject=repo
2025-01-21T11:40:52.0419539Z [INFO]  SonarQube Server: Default branch of this repository is 'refs/heads/develop'
2025-01-21T11:40:52.0420665Z ##[debug]Build.SourceBranch=refs/heads/sonar-develop
2025-01-21T11:40:52.0421554Z ##[debug][DEBUG] SonarQube Server: SonarQube (Server, Cloud) version >= 7.2.0 detected, setting report-task.txt file to its newest location.
2025-01-21T11:40:52.0422279Z ##[debug]Agent.TempDirectory=/home/vsts/work/_temp
2025-01-21T11:40:52.0422923Z ##[debug]Build.BuildId=16365
2025-01-21T11:40:52.0426037Z ##[debug][DEBUG] SonarQube Server: Branch and PR parameters: {"sonar.branch.name":"sonar-develop","sonar.scanner.metadataFilePath":"/home/vsts/work/_temp/sonar/16365/token/report-task.txt"}
2025-01-21T11:40:52.0427339Z ##[debug]set SONAR_SERVER_VERSION=24.12.0
2025-01-21T11:40:52.0428335Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_SERVER_VERSION;isOutput=false;issecret=false;]24.12.0
2025-01-21T11:40:52.0428992Z ##[debug]set SONAR_SCANNER_MODE=dotnet
2025-01-21T11:40:52.0429929Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_SCANNER_MODE;isOutput=false;issecret=false;]dotnet
2025-01-21T11:40:52.0430659Z ##[debug]set SONAR_SCANNER_REPORTTASKFILE=/home/vsts/work/_temp/sonar/16365/token/report-task.txt
2025-01-21T11:40:52.0431651Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_SCANNER_REPORTTASKFILE;isOutput=false;issecret=false;]/home/vsts/work/_temp/sonar/16365/token/report-task.txt
2025-01-21T11:40:52.0432362Z ##[debug]set SONAR_ENDPOINT=********
2025-01-21T11:40:52.0437230Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_ENDPOINT;isOutput=false;issecret=true;]***
2025-01-21T11:40:52.0438015Z ##[debug]set SONAR_SCANNER_MODE=dotnet
2025-01-21T11:40:52.0443924Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_SCANNER_MODE;isOutput=false;issecret=false;]dotnet
2025-01-21T11:40:52.0446236Z ##[debug]set SONAR_ENDPOINT=********
2025-01-21T11:40:52.0448058Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_ENDPOINT;isOutput=false;issecret=true;]***
2025-01-21T11:40:52.0455994Z ##[debug]set SONARQUBE_SCANNER_PARAMS={"sonar.host.url":"http://IP:9000","sonar.token":***,"sonar.projectKey":"repo<repo>_token","sonar.projectName":"repo-sonar-repo-api-ms","sonar.projectVersion":"1.0","sonar.branch.name":"sonar-develop","sonar.scanner.metadataFilePath":"/home/vsts/work/_temp/sonar/16365/token/report-task.txt"}
2025-01-21T11:40:52.0458346Z ##[debug]Processed: ##vso[task.setvariable variable=SONARQUBE_SCANNER_PARAMS;isOutput=false;issecret=false;]{"sonar.host.url":"http://IP:9000","sonar.token":***,"sonar.projectKey":"repo<repo>_token","sonar.projectName":"repo-sonar-repo-api-ms","sonar.projectVersion":"1.0","sonar.branch.name":"sonar-develop","sonar.scanner.metadataFilePath":"/home/vsts/work/_temp/sonar/16365/token/report-task.txt"}
2025-01-21T11:40:52.0460323Z ##[debug]dotnetScannerVersion=undefined
2025-01-21T11:40:52.0461064Z ##[debug]Absolute path for pathSegments: /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1,dotnet-sonar-scanner-msbuild,SonarScanner.MSBuild.dll = /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0462052Z ##[debug]set SONAR_SCANNER_LOCATION=/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0463123Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_SCANNER_LOCATION;isOutput=false;issecret=false;]/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0463937Z ##[debug][DEBUG] SonarQube Server: Using .NET core scanner at /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0464691Z ##[debug]set SONAR_SCANNER_DOTNET_DLL=/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0465735Z ##[debug]Processed: ##vso[task.setvariable variable=SONAR_SCANNER_DOTNET_DLL;isOutput=false;issecret=false;]/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0466749Z ##[debug][DEBUG] SonarQube Server: Using scanner at /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0467952Z ##[debug]which 'dotnet'
2025-01-21T11:40:52.0471978Z ##[debug]found: '/usr/bin/dotnet'
2025-01-21T11:40:52.0473482Z ##[debug]which '/usr/bin/dotnet'
2025-01-21T11:40:52.0474680Z ##[debug]found: '/usr/bin/dotnet'
2025-01-21T11:40:52.0476083Z ##[debug]/usr/bin/dotnet arg: /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0480991Z ##[debug]defaultRoot: '/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll'
2025-01-21T11:40:52.0482309Z ##[debug]findOptions.allowBrokenSymbolicLinks: 'false'
2025-01-21T11:40:52.0482874Z ##[debug]findOptions.followSpecifiedSymbolicLink: 'true'
2025-01-21T11:40:52.0483381Z ##[debug]findOptions.followSymbolicLinks: 'true'
2025-01-21T11:40:52.0483895Z ##[debug]findOptions.skipMissingFiles: 'false'
2025-01-21T11:40:52.0484900Z ##[debug]matchOptions.debug: 'false'
2025-01-21T11:40:52.0485381Z ##[debug]matchOptions.nobrace: 'true'
2025-01-21T11:40:52.0485849Z ##[debug]matchOptions.noglobstar: 'false'
2025-01-21T11:40:52.0486300Z ##[debug]matchOptions.dot: 'true'
2025-01-21T11:40:52.0486762Z ##[debug]matchOptions.noext: 'false'
2025-01-21T11:40:52.0487225Z ##[debug]matchOptions.nocase: 'false'
2025-01-21T11:40:52.0487866Z ##[debug]matchOptions.nonull: 'false'
2025-01-21T11:40:52.0488372Z ##[debug]matchOptions.matchBase: 'false'
2025-01-21T11:40:52.0488826Z ##[debug]matchOptions.nocomment: 'false'
2025-01-21T11:40:52.0489293Z ##[debug]matchOptions.nonegate: 'false'
2025-01-21T11:40:52.0489766Z ##[debug]matchOptions.flipNegate: 'false'
2025-01-21T11:40:52.0490333Z ##[debug]pattern: '/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-*/bin/sonar-scanner'
2025-01-21T11:40:52.0505471Z ##[debug]findPath: '/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild'
2025-01-21T11:40:52.0506428Z ##[debug]statOnly: 'false'
2025-01-21T11:40:52.0507423Z ##[debug]findPath: '/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild'
2025-01-21T11:40:52.0508018Z ##[debug]findOptions.allowBrokenSymbolicLinks: 'false'
2025-01-21T11:40:52.0508722Z ##[debug]findOptions.followSpecifiedSymbolicLink: 'true'
2025-01-21T11:40:52.0509204Z ##[debug]findOptions.followSymbolicLinks: 'true'
2025-01-21T11:40:52.0509688Z ##[debug]findOptions.skipMissingFiles: 'false'
2025-01-21T11:40:52.0511291Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild (directory)
2025-01-21T11:40:52.0518558Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/Google.Protobuf.dll (file)
2025-01-21T11:40:52.0519422Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/ICSharpCode.SharpZipLib.dll (file)
2025-01-21T11:40:52.0520116Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/Newtonsoft.Json.dll (file)
2025-01-21T11:40:52.0521588Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarQube.Analysis.xml (file)
2025-01-21T11:40:52.0522301Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.Common.dll (file)
2025-01-21T11:40:52.0522994Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.PostProcessor.dll (file)
2025-01-21T11:40:52.0524002Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.PreProcessor.dll (file)
2025-01-21T11:40:52.0524700Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.Shim.dll (file)
2025-01-21T11:40:52.0525393Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.Tasks.dll (file)
2025-01-21T11:40:52.0526274Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll (file)
2025-01-21T11:40:52.0527541Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.runtimeconfig.json (file)
2025-01-21T11:40:52.0528200Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/Targets (directory)
2025-01-21T11:40:52.0529183Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/Targets/SonarQube.Integration.ImportBefore.targets (file)
2025-01-21T11:40:52.0529862Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/Targets/SonarQube.Integration.targets (file)
2025-01-21T11:40:52.0530633Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006 (directory)
2025-01-21T11:40:52.0532024Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/bin (directory)
2025-01-21T11:40:52.0574465Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/bin/sonar-scanner (file)
2025-01-21T11:40:52.0575237Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/bin/sonar-scanner-debug (file)
2025-01-21T11:40:52.0576590Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/bin/sonar-scanner-debug.bat (file)
2025-01-21T11:40:52.0577320Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/bin/sonar-scanner.bat (file)
2025-01-21T11:40:52.0578038Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/conf (directory)
2025-01-21T11:40:52.0578762Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/conf/sonar-scanner.properties (file)
2025-01-21T11:40:52.0579500Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/lib (directory)
2025-01-21T11:40:52.0580208Z ##[debug]  /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/sonar-scanner-5.0.1.3006/lib/sonar-scanner-cli-5.0.1.3006.jar (file)
2025-01-21T11:40:52.0580818Z ##[debug]25 results
2025-01-21T11:40:52.0581307Z ##[debug]found 25 paths
2025-01-21T11:40:52.0581767Z ##[debug]applying include pattern
2025-01-21T11:40:52.0582233Z ##[debug]1 matches
2025-01-21T11:40:52.0582693Z ##[debug]1 final results
2025-01-21T11:40:52.0583142Z ##[debug]/usr/bin/dotnet arg: begin
2025-01-21T11:40:52.0583697Z ##[debug]/usr/bin/dotnet arg: /k:repo<repo>_token
2025-01-21T11:40:52.0584520Z ##[debug]system.debug=True
2025-01-21T11:40:52.0584991Z ##[debug]exec tool: /usr/bin/dotnet
2025-01-21T11:40:52.0585454Z ##[debug]arguments:
2025-01-21T11:40:52.0586008Z ##[debug]   /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:40:52.0586575Z ##[debug]   begin
2025-01-21T11:40:52.0587090Z ##[debug]   /k:repo<repo>_token
2025-01-21T11:40:52.0588466Z [command]/usr/bin/dotnet /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll begin /k:repo<repo>_token
2025-01-21T11:40:52.3010838Z SonarScanner for MSBuild 9.0.2
2025-01-21T11:40:52.3011733Z Using the .NET Core version of the Scanner for MSBuild
2025-01-21T11:40:52.4504956Z Pre-processing started.
2025-01-21T11:40:52.4522910Z Preparing working directories...
2025-01-21T11:40:52.5690959Z 11:40:52.568  Updating build integration targets...
2025-01-21T11:40:53.0166980Z 11:40:53.016  Using SonarQube v24.12.0.100206.
2025-01-21T11:40:53.3069012Z 11:40:53.306  The JRE provisioning is a time consuming operation.
2025-01-21T11:40:53.3069476Z JRE provisioned: OpenJDK17U-jre_x64_linux_hotspot_17.0.11_9.tar.gz.
2025-01-21T11:40:53.3069915Z If you already have a compatible java version installed, please add either the parameter "/d:sonar.scanner.skipJreProvisioning=true" or "/d:sonar.scanner.javaExePath=<PATH>".
2025-01-21T11:40:55.8078410Z ##[debug]Agent environment resources - Disk: / Available 19455.54 MB out of 74244.74 MB, Memory: Used 1086.00 MB out of 6921.00 MB, CPU: Usage 74.71%
2025-01-21T11:40:57.8312522Z 11:40:57.83  Fetching analysis configuration settings...
2025-01-21T11:40:59.6237590Z 11:40:59.623  Provisioning analyzer assemblies for cs...
2025-01-21T11:40:59.6246227Z 11:40:59.624  Installing required Roslyn analyzers...
2025-01-21T11:40:59.6251965Z 11:40:59.624  Processing plugin: csharp version 10.3.0.106239
2025-01-21T11:40:59.9794804Z 11:40:59.978  Processing plugin: vbnet version 10.3.0.106239
2025-01-21T11:41:00.7627488Z 11:41:00.761  Provisioning analyzer assemblies for vbnet...
2025-01-21T11:41:00.7628322Z 11:41:00.762  Installing required Roslyn analyzers...
2025-01-21T11:41:00.7629096Z 11:41:00.762  Processing plugin: csharp version 10.3.0.106239
2025-01-21T11:41:00.7633710Z 11:41:00.762  Processing plugin: vbnet version 10.3.0.106239
2025-01-21T11:41:00.7700152Z 11:41:00.769  Incremental PR analysis: Base branch parameter was not provided.
2025-01-21T11:41:00.7700689Z 11:41:00.769  Cache data is empty. A full analysis will be performed.
2025-01-21T11:41:00.8054214Z 11:41:00.804  WARNING: Multi-Language analysis is enabled. If this was not intended and you have issues such as hitting your LOC limit or analyzing unwanted files, please set "/d:sonar.scanner.scanAll=false" in the begin step.
2025-01-21T11:41:00.8069080Z ##[debug]Agent environment resources - Disk: / Available 19269.84 MB out of 74244.74 MB, Memory: Used 1120.00 MB out of 6921.00 MB, CPU: Usage 55.55%
2025-01-21T11:41:00.8209818Z 11:41:00.82  Pre-processing succeeded.
2025-01-21T11:41:00.8325582Z ##[debug]Process exited with code 0 and signal null for tool '/usr/bin/dotnet'
2025-01-21T11:41:00.8327431Z ##[debug]STDIO streams have closed and received exit code 0 and signal null for tool '/usr/bin/dotnet'
2025-01-21T11:41:00.8391318Z ##[section]Finishing: SonarQubePrepare
2025-01-21T11:41:00.8421465Z ##[debug]Evaluating condition for step: 'SonarQubeAnalyze'
2025-01-21T11:41:00.8422587Z ##[debug]Evaluating: SucceededNode()
2025-01-21T11:41:00.8422961Z ##[debug]Evaluating SucceededNode:
2025-01-21T11:41:00.8423502Z ##[debug]=> True
2025-01-21T11:41:00.8423977Z ##[debug]Result: True
2025-01-21T11:41:00.8424308Z ##[section]Starting: SonarQubeAnalyze
2025-01-21T11:41:00.8429223Z ==============================================================================
2025-01-21T11:41:00.8429586Z Task         : Run Code Analysis
2025-01-21T11:41:00.8429679Z Description  : Run scanner and upload the results to the SonarQube Server.
2025-01-21T11:41:00.8429826Z Version      : 7.1.1
2025-01-21T11:41:00.8429916Z Author       : sonarsource
2025-01-21T11:41:00.8430066Z Help         : This task is not needed for Maven and Gradle projects since the scanner should be run as part of the build.

[More Information](https://docs.sonarsource.com/sonarqube/latest/analyzing-source-code/scanners/sonarqube-extension-for-azure-devops/)
2025-01-21T11:41:00.8430351Z ==============================================================================
2025-01-21T11:41:00.9045128Z ##[debug]Using node path: /home/vsts/agents/4.248.0/externals/node16/bin/node
2025-01-21T11:41:01.0423097Z ##[debug]system.debug=True
2025-01-21T11:41:01.0424290Z ##[debug]DistributedTask.Tasks.Node.SkipDebugLogsWhenDebugModeOff=True
2025-01-21T11:41:01.0503703Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp
2025-01-21T11:41:01.0514456Z ##[debug]loading inputs and endpoints
2025-01-21T11:41:01.0521148Z ##[debug]loading INPUT_JDKVERSION
2025-01-21T11:41:01.0544975Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2025-01-21T11:41:01.0545985Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2025-01-21T11:41:01.0547086Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2025-01-21T11:41:01.0547924Z ##[debug]loading SECRET_VSS_NUGET_ACCESSTOKEN
2025-01-21T11:41:01.0551991Z ##[debug]loading SECRET_SONAR_ENDPOINT
2025-01-21T11:41:01.0554398Z ##[debug]loading SECRET_CONTAINER_AUTHENTICATIONTOKEN
2025-01-21T11:41:01.0558415Z ##[debug]loading SECRET_SYSTEM_ACCESSTOKEN
2025-01-21T11:41:01.0561657Z ##[debug]loaded 8
2025-01-21T11:41:01.0568204Z ##[debug]Agent.ProxyUrl=undefined
2025-01-21T11:41:01.0569063Z ##[debug]Agent.CAInfo=undefined
2025-01-21T11:41:01.0570020Z ##[debug]Agent.ClientCert=undefined
2025-01-21T11:41:01.0570805Z ##[debug]Agent.SkipCertValidation=undefined
2025-01-21T11:41:01.0860053Z ##[debug]Agent.ProxyUrl=undefined
2025-01-21T11:41:01.0861107Z ##[debug]Agent.CAInfo=undefined
2025-01-21T11:41:01.0862169Z ##[debug]Agent.ClientCert=undefined
2025-01-21T11:41:01.0862995Z ##[debug]check path : /home/vsts/work/_tasks/SonarQubeAnalyze_token/7.1.1/lib.json
2025-01-21T11:41:01.0865567Z ##[debug]adding resource file: /home/vsts/work/_tasks/SonarQubeAnalyze_token/7.1.1/lib.json
2025-01-21T11:41:01.0866456Z ##[debug]system.culture=en-US
2025-01-21T11:41:01.1703758Z ##[debug]jdkversion=JAVA_HOME
2025-01-21T11:41:01.1710412Z ##[debug]SONAR_SCANNER_MODE=dotnet
2025-01-21T11:41:01.1710905Z ##[debug]SONAR_SERVER_VERSION=24.12.0
2025-01-21T11:41:01.1711654Z ##[debug][DEBUG] SonarQube Server: JAVA_HOME was specified in the Run Code Analysis task configuration, nothing to do.
2025-01-21T11:41:01.1712374Z ##[debug]SONAR_SCANNER_MODE=dotnet
2025-01-21T11:41:01.1713652Z ##[debug]SONARQUBE_SCANNER_PARAMS={"sonar.host.url":"http://IP:9000","sonar.token":***,"sonar.projectKey":"repo<repo>_token","sonar.projectName":"repo-sonar-repo-api-ms","sonar.projectVersion":"1.0","sonar.branch.name":"sonar-develop","sonar.scanner.metadataFilePath":"/home/vsts/work/_temp/sonar/16365/token/report-task.txt"}
2025-01-21T11:41:01.1715090Z ##[debug]SONAR_SCANNER_DOTNET_DLL=/home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:41:01.1716026Z ##[debug][DEBUG] SonarQube Server: Using scanner at /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:41:01.1716780Z ##[debug]which 'dotnet'
2025-01-21T11:41:01.1723833Z ##[debug]found: '/usr/bin/dotnet'
2025-01-21T11:41:01.1724338Z ##[debug]which '/usr/bin/dotnet'
2025-01-21T11:41:01.1725688Z ##[debug]found: '/usr/bin/dotnet'
2025-01-21T11:41:01.1727502Z ##[debug]/usr/bin/dotnet arg: /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:41:01.1728104Z ##[debug]/usr/bin/dotnet arg: end
2025-01-21T11:41:01.1729567Z ##[debug]exec tool: /usr/bin/dotnet
2025-01-21T11:41:01.1730051Z ##[debug]arguments:
2025-01-21T11:41:01.1730640Z ##[debug]   /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll
2025-01-21T11:41:01.1731200Z ##[debug]   end
2025-01-21T11:41:01.1733346Z [command]/usr/bin/dotnet /home/vsts/work/_tasks/SonarQubePrepare_token/7.1.1/dotnet-sonar-scanner-msbuild/SonarScanner.MSBuild.dll end
2025-01-21T11:41:01.2721631Z SonarScanner for MSBuild 9.0.2
2025-01-21T11:41:01.2730149Z Using the .NET Core version of the Scanner for MSBuild
2025-01-21T11:41:01.3641672Z Post-processing started.
2025-01-21T11:41:01.4791150Z ##[error]11:41:01.475  The SonarScanner for MSBuild integration failed: SonarQube was unable to collect the required information about your projects.
Possible causes:
  1. The project has not been built - the project must be built in between the begin and end steps.
  2. An unsupported version of MSBuild has been used to build the project. Supported versions: MSBuild 16 and higher.
  3. The begin, build and end steps have not all been launched from the same folder.
  4. None of the analyzed projects have a valid ProjectGuid and you have not used a solution (.sln).
2025-01-21T11:41:01.4793128Z ##[debug]Processed: ##vso[task.logissue type=error;]11:41:01.475  The SonarScanner for MSBuild integration failed: SonarQube was unable to collect the required information about your projects.
Possible causes:
  1. The project has not been built - the project must be built in between the begin and end steps.
  2. An unsupported version of MSBuild has been used to build the project. Supported versions: MSBuild 16 and higher.
  3. The begin, build and end steps have not all been launched from the same folder.
  4. None of the analyzed projects have a valid ProjectGuid and you have not used a solution (.sln).
2025-01-21T11:41:01.4794084Z 11:41:01.475  The SonarScanner for MSBuild integration failed: SonarQube was unable to collect the required information about your projects.
2025-01-21T11:41:01.4794421Z Possible causes:
2025-01-21T11:41:01.4794722Z   1. The project has not been built - the project must be built in between the begin and end steps.
2025-01-21T11:41:01.4795120Z   2. An unsupported version of MSBuild has been used to build the project. Supported versions: MSBuild 16 and higher.
2025-01-21T11:41:01.4795481Z   3. The begin, build and end steps have not all been launched from the same folder.
2025-01-21T11:41:01.4795828Z   4. None of the analyzed projects have a valid ProjectGuid and you have not used a solution (.sln).
2025-01-21T11:41:01.4796207Z 11:41:01.475  Generation of the sonar-properties file failed. Unable to complete the analysis.
2025-01-21T11:41:01.4827734Z ##[error]11:41:01.481  Post-processing failed. Exit code: 1
2025-01-21T11:41:01.4828389Z ##[debug]Processed: ##vso[task.logissue type=error;]11:41:01.481  Post-processing failed. Exit code: 1
2025-01-21T11:41:01.4828850Z 11:41:01.481  Post-processing failed. Exit code: 1
2025-01-21T11:41:01.4916656Z ##[debug]Process exited with code 1 and signal null for tool '/usr/bin/dotnet'
2025-01-21T11:41:01.4920568Z ##[debug]STDIO streams have closed and received exit code 1 and signal null for tool '/usr/bin/dotnet'
2025-01-21T11:41:01.4927306Z ##[error][ERROR] SonarQube Server: Error while executing task Analyze: The process '/usr/bin/dotnet' failed with exit code 1
2025-01-21T11:41:01.4928389Z ##[debug]Processed: ##vso[task.issue type=error;source=TaskInternal;][ERROR] SonarQube Server: Error while executing task Analyze: The process '/usr/bin/dotnet' failed with exit code 1
2025-01-21T11:41:01.4929656Z ##[debug]task result: Failed
2025-01-21T11:41:01.4930467Z ##[error]The process '/usr/bin/dotnet' failed with exit code 1
2025-01-21T11:41:01.4931309Z ##[debug]Processed: ##vso[task.issue type=error;source=TaskInternal;]The process '/usr/bin/dotnet' failed with exit code 1
2025-01-21T11:41:01.4933545Z ##[debug]Processed: ##vso[task.complete result=Failed;]The process '/usr/bin/dotnet' failed with exit code 1
2025-01-21T11:41:01.5068240Z ##[section]Finishing: SonarQubeAnalyze
2025-01-21T11:41:01.5099137Z ##[debug]Evaluating condition for step: 'SonarQubePublish'
2025-01-21T11:41:01.5100104Z ##[debug]Evaluating: SucceededNode()
2025-01-21T11:41:01.5100477Z ##[debug]Evaluating SucceededNode:
2025-01-21T11:41:01.5101036Z ##[debug]=> False
2025-01-21T11:41:01.5101409Z ##[debug]Result: False
2025-01-21T11:41:01.5102520Z Skipping step due to condition evaluation.
Evaluating: SucceededNode()
Result: False

2025-01-21T11:41:01.5132242Z ##[debug]Evaluating condition for step: 'Microsoft Defender for DevOps Container Mapping End'
2025-01-21T11:41:01.5132966Z ##[debug]Evaluating: always()
2025-01-21T11:41:01.5133302Z ##[debug]Evaluating always:
2025-01-21T11:41:01.5133591Z ##[debug]=> True
2025-01-21T11:41:01.5133948Z ##[debug]Result: True
2025-01-21T11:41:01.5134321Z ##[section]Starting: Microsoft Defender for DevOps Container Mapping End
2025-01-21T11:41:01.5140524Z ==============================================================================
2025-01-21T11:41:01.5140703Z Task         : Microsoft Security DevOps
2025-01-21T11:41:01.5140801Z Description  : Run the Microsoft Security DevOps CLI for static analysis.
2025-01-21T11:41:01.5140947Z Version      : 1.17.1
2025-01-21T11:41:01.5141032Z Author       : Microsoft Corporation
2025-01-21T11:41:01.5141192Z Help         : Runs the [Microsoft Security DevOps CLI](https://aka.ms/msdo-nuget) for security analysis. Effective September 20th 2023, the Secret Scanning option (CredScan) within Microsoft Security DevOps (MSDO) Extension for Azure DevOps is deprecated. MSDO Secret Scanning is replaced by the [Configure GitHub Advanced Security for Azure DevOps features](https://learn.microsoft.com/en-us/azure/devops/repos/security/configure-github-advanced-security-features#set-up-secret-scanning) offering.
2025-01-21T11:41:01.5141686Z ==============================================================================
2025-01-21T11:41:01.5787846Z ##[debug]Using node path: /home/vsts/agents/4.248.0/externals/node16/bin/node
2025-01-21T11:41:01.6967962Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp
2025-01-21T11:41:01.6968520Z ##[debug]loading inputs and endpoints
2025-01-21T11:41:01.6968986Z ##[debug]loading INPUT_COMMAND
2025-01-21T11:41:01.6980074Z ##[debug]loading INPUT_POLICY
2025-01-21T11:41:01.6982273Z ##[debug]loading INPUT_BREAK
2025-01-21T11:41:01.6984067Z ##[debug]loading INPUT_PUBLISH
2025-01-21T11:41:01.7018993Z ##[debug]loading INPUT_ARTIFACTNAME
2025-01-21T11:41:01.7020070Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2025-01-21T11:41:01.7021003Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2025-01-21T11:41:01.7021981Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2025-01-21T11:41:01.7023264Z ##[debug]loading SECRET_VSS_NUGET_ACCESSTOKEN
2025-01-21T11:41:01.7024132Z ##[debug]loading SECRET_SONAR_ENDPOINT
2025-01-21T11:41:01.7025167Z ##[debug]loading SECRET_CONTAINER_AUTHENTICATIONTOKEN
2025-01-21T11:41:01.7026010Z ##[debug]loading SECRET_SYSTEM_ACCESSTOKEN
2025-01-21T11:41:01.7026744Z ##[debug]loaded 12
2025-01-21T11:41:01.7030663Z ##[debug]Agent.ProxyUrl=undefined
2025-01-21T11:41:01.7033774Z ##[debug]Agent.CAInfo=undefined
2025-01-21T11:41:01.7034663Z ##[debug]Agent.ClientCert=undefined
2025-01-21T11:41:01.7035417Z ##[debug]Agent.SkipCertValidation=undefined
2025-01-21T11:41:01.7427624Z ##[debug]command=post-job
2025-01-21T11:41:01.7428524Z ##[debug]Running Command: post-job
2025-01-21T11:41:01.7431689Z ##[group]This task was injected as part of Microsoft Defender for DevOps enablement- https://go.microsoft.com/fwlink/?linkid=2231419
2025-01-21T11:41:01.7432388Z ##[section]:::::
2025-01-21T11:41:01.7436997Z ##[debug]PREJOBSTARTTIME=2025-01-21T11:39:39.182Z
2025-01-21T11:41:01.7442833Z ##[debug]which 'docker'
2025-01-21T11:41:01.7462280Z ##[debug]found: '/usr/bin/docker'
2025-01-21T11:41:01.7465750Z ##[debug]which 'docker'
2025-01-21T11:41:01.7473683Z ##[debug]found: '/usr/bin/docker'
2025-01-21T11:41:01.7475855Z ##[debug]which 'docker'
2025-01-21T11:41:01.7484784Z ##[debug]found: '/usr/bin/docker'
2025-01-21T11:41:01.7841807Z ##[debug]Docker Version: Docker version 26.1.3, build b72abbb
2025-01-21T11:41:01.7845857Z ##[debug]No Docker events found
2025-01-21T11:41:01.7883054Z ##[debug]Processed: ##vso[task.logdetail id=be07b028-c188-450a-93bc;type=NoDockerEvents;name=NoDockerEvents;order=999;]No Docker events found
2025-01-21T11:41:01.7890394Z docker event id
2025-01-21T11:41:01.7892511Z ##[endgroup]
2025-01-21T11:41:01.8100197Z ##[section]Finishing: Microsoft Defender for DevOps Container Mapping End
2025-01-21T11:41:01.8141161Z ##[debug]Evaluating condition for step: 'Checkout <repo>@sonar-develop to s'
2025-01-21T11:41:01.8142222Z ##[debug]Evaluating: AlwaysNode()
2025-01-21T11:41:01.8142701Z ##[debug]Evaluating AlwaysNode:
2025-01-21T11:41:01.8143130Z ##[debug]=> True
2025-01-21T11:41:01.8143672Z ##[debug]Result: True
2025-01-21T11:41:01.8144040Z ##[section]Starting: Checkout <repo>@sonar-develop to s
2025-01-21T11:41:01.8147483Z ==============================================================================
2025-01-21T11:41:01.8147690Z Task         : Get sources
2025-01-21T11:41:01.8147775Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.
2025-01-21T11:41:01.8147927Z Version      : 1.0.0
2025-01-21T11:41:01.8148033Z Author       : Microsoft
2025-01-21T11:41:01.8148135Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199)
2025-01-21T11:41:01.8148333Z ==============================================================================
2025-01-21T11:41:02.2074711Z Cleaning any cached credential from repository: <repo> (Git)
2025-01-21T11:41:02.2075418Z ##[debug]Repository url=https://<git_URL> Backend/_git/<repo>
2025-01-21T11:41:02.2075980Z ##[debug]targetPath=/home/vsts/work/1/s
2025-01-21T11:41:02.2137627Z ##[debug]Cleaned up /home/vsts/agents/4.248.0/externals/tee and /home/vsts/work/_temp/tee_temp_dir
2025-01-21T11:41:02.2153509Z ##[section]Finishing: Checkout <repo>@sonar-develop to s
2025-01-21T11:41:02.2183107Z ##[section]Starting: Finalize Job
2025-01-21T11:41:02.2195584Z Cleaning up task key
2025-01-21T11:41:02.2196614Z Start cleaning up orphan processes.
2025-01-21T11:41:02.2428901Z ##[section]Finishing: Finalize Job
2025-01-21T11:41:02.2473470Z ##[debug]Starting diagnostic file upload.
2025-01-21T11:41:02.2473702Z ##[debug]Setting up diagnostic log folders.
2025-01-21T11:41:02.2475696Z ##[debug]Creating diagnostic log files folder.
2025-01-21T11:41:02.2476950Z ##[debug]Creating diagnostic log environment file.
2025-01-21T11:41:02.2676394Z ##[debug]Creating capabilities file.
2025-01-21T11:41:02.2696829Z ##[debug]Copying 1 worker diag logs from /home/vsts/agents/4.248.0/_diag.
2025-01-21T11:41:02.2709884Z ##[debug]Copying 1 agent diag logs from /home/vsts/agents/4.248.0/_diag.
2025-01-21T11:41:02.2711442Z ##[debug]Dumping of waagent.conf file
2025-01-21T11:41:02.2715693Z ##[debug]Dumping waagent.conf file is completed.
2025-01-21T11:41:02.2715905Z ##[debug]Dumping cloud-init logs.
2025-01-21T11:41:02.6515453Z ##[debug]This command must be run as root.

2025-01-21T11:41:02.6515994Z ##[debug]Cloud-init logs were not found.
2025-01-21T11:41:02.6516185Z ##[debug]Dumping cloud-init logs is ended.
2025-01-21T11:41:02.6516696Z ##[debug]The platform is not based on Debian - skipping debsums check.
2025-01-21T11:41:02.6516912Z ##[debug]Starting dumping Agent Azure VM extension logs.
2025-01-21T11:41:02.6523749Z ##[debug]Path to Agent Azure VM Linux extension logs does not exist.
2025-01-21T11:41:02.6524260Z ##[debug](directory "/var/log/azure/Microsoft.VisualStudio.Services.TeamServicesAgentLinux" not found)
2025-01-21T11:41:02.6524518Z ##[debug]Agent Azure VM extension logs not found. Skipping.
2025-01-21T11:41:02.6524708Z ##[debug]Zipping diagnostic files.
2025-01-21T11:41:02.6617171Z ##[debug]Uploading diagnostic metadata file.
2025-01-21T11:41:02.6649039Z ##[debug]Diagnostic file upload complete.
2025-01-21T11:41:02.6671230Z ##[section]Finishing: Build

Hello Camp,

As i see there is a max lines of code limits, i have updated in 2 threads please check the full log

Hi 7457,

Thanks for the log. The first one looks to be all Git, and the second one all… Docker? But I do see this:

Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:8.0

Sorry, but ASP.NET isn’t supported.

 
Ann

Hello Camp,

But developers are able to run on the same sources using below sonar scanner plugin; please let us know is there any alternative for the azure devops
dotnet sonarscanner begin /k:“{your-project-key}” /d:sonar.login=“{your-project-secret}” /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml /d:sonar.host.url=“http://localhost:9000
dotnet build --no-incremental
dotnet-coverage collect ‘dotnet test’ -f xml -o ‘coverage.xml’
dotnet sonarscanner end /d:sonar.login=“{your-project-secret}”

Hi 57,

I don’t know what to tell you. ASP.NET isn’t supported.

 
Ann