-
Notifications
You must be signed in to change notification settings - Fork 189
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
SAT Progress #1217
SAT Progress #1217
Conversation
Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
@@ -323,7 +323,8 @@ proc getSolvedPackages*(pkgVersionTable: Table[string, PackageVersions], output: | |||
result.add solvedPkg | |||
|
|||
proc getCacheDownloadDir*(url: string, ver: VersionRange, options: Options): string = | |||
options.pkgCachePath / getDownloadDirName(url, ver, notSetSha1Hash) | |||
return "" | |||
# options.pkgCachePath / getDownloadDirName(url, ver, notSetSha1Hash) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this disabled?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It prevents packages being downloaded twice (""
makes it so it uses a temp directory). A test is failing when is set (SAT only oc). I disabled it so I can be sure it doesnt interfere with the main goal which is making existing functionality work with SAT, after that I will work on the failing test (spend a lot of time already trying to fix it, but decided to move on and fix SAT first)
Most tests are green now