Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Splr solver #2

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
g++ -Wall -O3 -fPIC -shared -s -I${JAVA_HOME}/include -I${JAVA_HOME}/include/win32 -Ibuild/headers -Iglucose-src -I. -Lglucose-src/build src/main/cpp/JGlucose.cpp -lglucose -o build/lib/jglucose.dll

- name: Build package using Gradle wrapper
run: ./gradlew build -x test --stacktrace
run: ./gradlew build -x test --stacktrace -x :jni:cargoBuild -x :jni:cargoTest -x :jni:cargoClean

- name: Upload to GH Releases
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: echo "$(realpath bin/)" >> $GITHUB_PATH

- name: Build package using Gradle wrapper
run: ./gradlew build --stacktrace --scan
run: ./gradlew build --stacktrace --scan -x :jni:cargoBuild -x :jni:cargoTest -x :jni:cargoClean

- name: Upload to GH Releases
uses: softprops/action-gh-release@v1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# Build folders
out/
build/
target/

# Images
*.png
Expand Down
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ plugins {
with(Plugins.GradleVersions) { id(id) version (version) }
with(Plugins.Shadow) { id(id) version (version) }
with(Plugins.Jmh) { id(id) version (version) apply false }
with(Plugins.Rust) { id(id) version (version) apply false }
`maven-publish`
}

Expand Down
7 changes: 7 additions & 0 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ object Versions {
const val multiarray = "0.6.1"
const val okio = "2.9.0"
const val shadow = "5.2.0"
const val rust_gradle_plugin = "0.1.0"
}

object Libs {
Expand Down Expand Up @@ -100,4 +101,10 @@ object Plugins {
const val version = Versions.jmh_gradle_plugin
const val id = "me.champeau.gradle.jmh"
}

// https://github.com/liurenjie1024/rust-gradle-plugin
object Rust {
const val version = Versions.rust_gradle_plugin
const val id = "io.github.liurenjie1024.gradle.rust"
}
}
198 changes: 198 additions & 0 deletions kotlin-satlib-jni/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions kotlin-satlib-jni/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "kotlin-satlib-jni-splr"
version = "0.1.0"
authors = ["Konstantin Chukharev <[email protected]>"]

[lib]
name = "jsplr"
path = "src/main/rust/JSplr.rs"
crate-type = ["cdylib"]

[dependencies]
jni = "0.18"

[dependencies.splr]
#version = "0.5.0"
path = "D:/dev/Rust/splr"
default-features = false
features = ["incremental_solver"]
22 changes: 22 additions & 0 deletions kotlin-satlib-jni/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import io.github.liurenjie1024.gradle.rust.CargoBuildTask

plugins {
id(Plugins.Jmh.id)
id(Plugins.Rust.id)
}

dependencies {
Expand All @@ -12,3 +15,22 @@ jmh {
resultsFile = project.file("${project.buildDir}/reports/jmh/results.json")
resultFormat = "JSON"
}

tasks.withType(CargoBuildTask::class.java).configureEach {
// verbose = true
release = true
}

tasks.register("copyRustLibDllToResources") {
doLast {
val libName = "jsplr.dll"
val src = projectDir.resolve("target/release").resolve(libName)
val dest = projectDir.resolve("src/main/resources/lib/win64").resolve(libName)
if (dest.exists()) {
dest.delete()
}
println("Copying $src to $dest...")
src.copyTo(dest, overwrite = true)
println("Done copying rust lib dll.")
}
}
Loading