Skip to content
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

Runtime test build depends on fat jar classes #8588

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,10 @@ lazy val runtime = (project in file("engine/runtime"))
Test / fork := true,
Test / envVars ++= distributionEnvironmentOverrides ++ Map(
"ENSO_TEST_DISABLE_IR_CACHE" -> "false"
)
),
Test / compile := (Test / compile)
.dependsOn(`runtime-fat-jar` / Compile / compileModuleInfo)
.value
Comment on lines +1660 to +1663
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably could have been achieved by adding

.dependsOn(`runtime-fat-jar` % "test->compile")

to the dependencies of runtime in

enso/build.sbt

Line 1734 in 21d164e

.dependsOn(`runtime-test-instruments` % "test->compile")
. But this should be even better. Thanks for the quick fix.

)
.settings(
(Compile / javacOptions) ++= Seq(
Expand Down
Loading