Fix runtime-with-instruments dependency on runtime (#3529)

This change makes sure that Runtime configuration of `runtime` is listed
as a dependency of `runtime-with-instruments`.
That way `buildEngineDistribution` which indirectly depends on
`runtime-with-instruments`/assembly triggers compilation for std-bits,
if necessary.

# Important Notes
Minor adjustments for a problem introduced in https://github.com/enso-org/enso/pull/3509
This commit is contained in:
Hubert Plociniczak 2022-06-15 10:31:19 +02:00 committed by GitHub
parent b756fc48d1
commit b850844834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1353,7 +1353,7 @@ lazy val `runtime-with-instruments` = (project in file("engine/runtime-with-ins
case _ => MergeStrategy.first
}
)
.dependsOn(runtime % "compile->compile;test->test")
.dependsOn(runtime % "compile->compile;test->test;runtime->runtime")
.dependsOn(`runtime-instrument-id-execution`)
.dependsOn(`runtime-instrument-repl-debugger`)
.dependsOn(`runtime-instrument-runtime-server`)