-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: The process '/usr/bin/git' failed with exit code 128 #10
Comments
Just encountered the same issue with version 1.2.4 of the Azure DevOps plugin on a Windows vmImage. // Jeppe, Visma mySupply |
Hi, we have the same issue in version 1.3.1. We want to use the Incremental Analysis (LCA) feature from Polaris that is described here: Error from our Azure DevOps YAML pipeline:
This is the task in the YAML Pipeline that we use: - task: SynopsysPolaris@1
env:
# https://learn.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml#systemaccesstoken
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
displayName: "Analysis | Coverity analysis"
inputs:
polarisService: '${{ parameters.ServiceConnectionName }}'
populateChangeSetFile: true
polarisCommand: >-
--persist-config
--co analyze.coverity.caching.jars=disable
--co analyze.coverity.caching.pfi=disable
--co analyze.coverity.caching.rws=disable
--co analyze.coverity.caching.tu-caching=disable
analyze
--wait
--incremental $CHANGE_SET_FILE_PATH
--upload-local-config
--run-property product=${{ parameters.Product }}
--run-property language=${{ parameters.ProgrammingLanguage }} What is causing this error? Best regards |
Hi, we have the same issue that @Y-Sari describes. Is there a solution for this? |
@nekosaur have you found a solution for yourself? Unfortunately, I have the same problem... |
No, I am no longer working on the project |
When I try to use this task in an azure yaml pipeline, I get the following output
I am using the following pipeline
The documentation here https://github.com/synopsys-sig/polaris-ado/blob/master/docs/docs.md does not explicitly say how to enable OAuth token when using yaml pipeline, only that
The OAuth token can also be provided through the Azure variable "System.AccessToken"
. From googling I have understood that thepersistCredentials: true
setting should do just that. However I am still getting an error.If I disable
populateChangeSetFile
then I do not get the error.The text was updated successfully, but these errors were encountered: