Skip to content

Commit 3b32c9f

Browse files
authored
Merge pull request #353 from kdroidFilter/feature/auto-build-native-locally
Auto-build native libraries locally on jvmProcessResources
2 parents d7ddcd0 + c8e8125 commit 3b32c9f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ tasks.register("buildNativeLibraries") {
7474
dependsOn(buildWin, buildLinux, buildMac)
7575
}
7676

77+
if (System.getenv("CI") == null) {
78+
tasks.named("jvmProcessResources") {
79+
dependsOn("buildNativeLibraries")
80+
}
81+
}
82+
7783
mavenPublishing {
7884
coordinates(
7985
groupId = "io.github.kdroidfilter",

0 commit comments

Comments
 (0)