Skip to content

Commit

Permalink
fix: Test build task depends on copyDevLibrary (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
msfroh authored Nov 6, 2024
1 parent 77a7870 commit 7353dc3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions datafusion-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ tasks.register('copyDevLibrary', Sync) {
dependsOn cargoDevBuild
}

tasks.named("test") {
dependsOn copyDevLibrary
}

tasks.register('copyBuiltLibrary', Copy) {
def extension = extensionMapping[osdetector.os]
from "${rootDir}/datafusion-jni/target/release/libdatafusion_jni.$extension"
Expand Down

0 comments on commit 7353dc3

Please sign in to comment.