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
The changes to versioning in the build affected the scaladoc/generateStableScala3Documentation task.
It now silently fails by not emitting index.html
The issue can be noticed in the logs of this task:
scaladoc will ignore following non-existent paths:
out/bootstrap/scala2-library-bootstrapped/scala-3.6.1-bin-SNAPSHOT-nonbootstrapped/classes,
out/bootstrap/scala3-library-bootstrapped/scala-3.6.1-bin-SNAPSHOT-nonbootstrapped/classes,
tmp/interfaces/target/classes,
out/bootstrap/tasty-core-bootstrapped/scala-3.6.1-bin-SNAPSHOT-nonbootstrapped/classes
tmp/interfaces/target/classes is a hard-coded path, it should be removed as we're not emitting API for compiler-interfaces
The 3 remaining paths are incorrect in such a way that when using baseVersion = "3.6.1" the non-boostrapepd output files are present in the 3.6.1-RC1-bin-... directories instead.
The text was updated successfully, but these errors were encountered:
The changes to versioning in the build affected the
scaladoc/generateStableScala3Documentation
task.It now silently fails by not emitting
index.html
The issue can be noticed in the logs of this task:
tmp/interfaces/target/classes
is a hard-coded path, it should be removed as we're not emitting API for compiler-interfacesThe 3 remaining paths are incorrect in such a way that when using
baseVersion = "3.6.1"
the non-boostrapepd output files are present in the3.6.1-RC1-bin-...
directories instead.The text was updated successfully, but these errors were encountered: