You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running sbt -Dsbt.ivy.home=customCacheFolder this setting is not being used for the artifacts generated by the converter, instead the default $HOME/.ivy2/local is used.
This leads to assembly errors, e.g.
[error] sbt.librarymanagement.ResolveException: Error downloading org.scalablytyped:fortawesome__free-brands-svg-icons_sjs0.6_2.12:5.13.0-e66cf0
[error] Not found
[error] Not found
[error] not found: /builds/XXX/default/sbt-cache/ivy/local/org.scalablytyped/fortawesome__free-brands-svg-icons_sjs0.6_2.12/5.13.0-e66cf0/ivys/ivy.xml
This setting can be read from ivyPaths.value.ivyHome
In my case I'm using a gitlab runner with cached folders to speed up runs, but the cached folder must reside inside the cloned repo (and not in users home).
The text was updated successfully, but these errors were encountered:
When running
sbt -Dsbt.ivy.home=customCacheFolder
this setting is not being used for the artifacts generated by the converter, instead the default$HOME/.ivy2/local
is used.This leads to assembly errors, e.g.
This setting can be read from
ivyPaths.value.ivyHome
In my case I'm using a gitlab runner with cached folders to speed up runs, but the cached folder must reside inside the cloned repo (and not in users home).
The text was updated successfully, but these errors were encountered: