Skip to content

Commit

Permalink
fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyaug committed Oct 9, 2023
1 parent 88923bd commit ae71aa5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/esti.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ jobs:
working-directory: clients/spark
run: |
mkdir -p ${{ github.workspace }}/test/spark/metaclient
cp core/target/scala-2.12/lakefs-spark-client-assembly*.jar ${{ github.workspace }}/test/spark/metaclient/spark-assembly-core.jar
cp target/core/scala-2.12/lakefs-spark-client-assembly*.jar ${{ github.workspace }}/test/spark/metaclient/spark-assembly-core.jar
metadata-client-export-spark3:
name: Test lakeFS metadata client export with Spark 3.x
Expand Down
5 changes: 3 additions & 2 deletions clients/spark/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def settingsToCompileIn(dir: String) = {
)
}

lazy val root = Project(s"lakefs-spark-client", file("core"))
lazy val root = (project in file("."))
.settings(
name := "lakefs-spark-client",
sharedSettings,
Expand All @@ -40,7 +40,8 @@ lazy val root = Project(s"lakefs-spark-client", file("core"))
// Uncomment to get (very) full stacktraces in test:
// Test / testOptions += Tests.Argument("-oF"),
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion),
buildInfoPackage := "io.treeverse.clients"
buildInfoPackage := "io.treeverse.clients",
target := file(s"target/core/")
)
.enablePlugins(S3Plugin, BuildInfoPlugin)

Expand Down

0 comments on commit ae71aa5

Please sign in to comment.