Skip to content

Commit

Permalink
Fix sbt build dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcelo Vanzin committed Nov 13, 2018
1 parent 007a788 commit 628f036
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion project/SparkBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,8 @@ object KubernetesIntegrationTests {
s"-Dspark.kubernetes.test.unpackSparkDir=$sparkHome"
),
// Force packaging before building images, so that the latest code is tested.
dockerBuild := dockerBuild.dependsOn(packageBin in Compile in assembly).value
dockerBuild := dockerBuild.dependsOn(packageBin in Compile in assembly)
.dependsOn(packageBin in Compile in examples).value
)
}

Expand Down

0 comments on commit 628f036

Please sign in to comment.