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

Added thorn creation to action #307

Merged
merged 3 commits into from
Oct 21, 2024
Merged
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
5 changes: 5 additions & 0 deletions .github/workflows/linux-build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ jobs:
with:
name: "EmergenTheta"
inputflag: "--algorithm EMERGENT"
- name: Create thorn.zip
uses: ./.github/actions/build-archive
with:
name: "Thorn"
inputflag: "--algorithm HORN"


javadoc:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ buildscript {

allprojects {
group = "hu.bme.mit.theta"
version = "6.6.0"
version = "6.6.1"

apply(from = rootDir.resolve("gradle/shared-with-buildSrc/mirrors.gradle.kts"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ class XcfaCli(private val args: Array<String>) {
@Parameter(names = ["--help", "-h"], help = true)
private var help = false

@Parameter(names = ["--svcomp"])
private var svcomp = false

@Parameter
var remainingFlags: MutableList<String> = ArrayList()

Expand All @@ -55,6 +58,18 @@ class XcfaCli(private val args: Array<String>) {
} else {
config = XcfaConfig<SpecFrontendConfig, SpecBackendConfig>()
}
if (svcomp) {
remainingFlags.addAll(
listOf(
"--enable-output",
"--disable-xcfa-serialization",
"--disable-arg-generation",
"--disable-chc-serialization",
"--disable-c-serialization",
"--only-svcomp-witness"
)
)
}
while (remainingFlags.isNotEmpty()) {
val nextArgs = remainingFlags.toTypedArray()
remainingFlags.clear()
Expand Down
Loading