From b850844834ee1c43ad54401629ec104a483ef401 Mon Sep 17 00:00:00 2001 From: Hubert Plociniczak Date: Wed, 15 Jun 2022 10:31:19 +0200 Subject: [PATCH] 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 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 17caa17769..cc98aa32a0 100644 --- a/build.sbt +++ b/build.sbt @@ -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`)