We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I was getting this error on my pipeline:
##[error]ENOENT: no such file or directory, stat '/home/vsts/work/1/scripts/tech_debt_validation.py'
It seems to be because the checked-out repository code goes to /home/vsts/work/1/s directory by default if not specified.
/home/vsts/work/1/s
In our case, we fixed the issue by creating a new variable and changing this line:
https://github.com/OutSystems/outsystems-pipeline/blob/c8007f8cbbc70767bf87c8eb276e29253b5826fd/examples/azure_devops/multistage/jobs/ValidateTechnicalDebtJob.yaml#L36C13-L36C13
to: scriptPath: '$(Build.SourcesDirectory)$(AIMentorStudio.PathToScript)'
scriptPath: '$(Build.SourcesDirectory)$(AIMentorStudio.PathToScript)'
The text was updated successfully, but these errors were encountered:
Same issue here, we had to specify the scripts folder in the pipeline in order for this to work
Sorry, something went wrong.
No branches or pull requests
Hi,
I was getting this error on my pipeline:
##[error]ENOENT: no such file or directory, stat '/home/vsts/work/1/scripts/tech_debt_validation.py'
It seems to be because the checked-out repository code goes to
/home/vsts/work/1/s
directory by default if not specified.In our case, we fixed the issue by creating a new variable and changing this line:
https://github.com/OutSystems/outsystems-pipeline/blob/c8007f8cbbc70767bf87c8eb276e29253b5826fd/examples/azure_devops/multistage/jobs/ValidateTechnicalDebtJob.yaml#L36C13-L36C13
to:
scriptPath: '$(Build.SourcesDirectory)$(AIMentorStudio.PathToScript)'
The text was updated successfully, but these errors were encountered: