-
Notifications
You must be signed in to change notification settings - Fork 314
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
Analyzer with SVN #5232
Comments
The PR #5303 seems to cause some regression in functional test, may be it's not the right way to fix this issue. An other idea could be to change the way to fill the map the of relativePath (https://github.com/oss-review-toolkit/ort/blob/main/model/src/main/kotlin/OrtResult.kt#L259) by having a specific svn implementation of https://github.com/oss-review-toolkit/ort/blob/main/model/src/main/kotlin/Repository.kt#L71. @sschuberth what do you think about ? |
This comment was marked as off-topic.
This comment was marked as off-topic.
@sschuberth : Hi, is there a better workaround to accomplish the scanner step except to exclude all dependencies causing this error and include them manually in the report? These are now much more than 10 packages with this problem with the latest version 41.0.0.
|
@marcelp-px an easy work-around could be to configure ORT to prefer source artifacts over VCS locations for scanning. Of course that only works if the packages in question did publish source artifacts. Other than that, if you'd like to help getting the issue fixed, ideally provide some public repository to analyze / scan where we can easily reproduce the issue with the latest ORT version (or sponsor the issue to get fixed 😉). |
Hi,
I've got an issue with a project under SVN.
I've got a project with this repo url : svn+ssh://svn.company.com/svnroot/Products/my-project/trunk
where there is a DotNet project : Prj/Src/module/module.vcxproj (ie => Products/my-project/trunk/Prj/Src/module/module.vcxproj)
The analyzer seems to compute a wrong vcs_processed url :
the obtained vcs_processed url contains the path concatenated with.
So that makes the scanner failed :
If I store the project files on git ( my-project/trunk becomes my-project.git )
the analyser computes an other project definition, with a good vcs_processed url:
And the scanner can work fine.
The text was updated successfully, but these errors were encountered: