Skip to content

Commit

Permalink
Merge pull request #112 from eed3si9n/wip/proguard
Browse files Browse the repository at this point in the history
Increase the memory for proguard
  • Loading branch information
eed3si9n authored Oct 18, 2024
2 parents 539dd33 + 188f3cb commit fd4b25d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
uses: sbt/setup-sbt@v1
- name: Build and test
run: |
sbt -v "mimaReportBinaryIssues; scalafmtSbtCheck; scalafmtCheckAll; shadedPackageBin; test;"
sbt -v "mimaReportBinaryIssues; scalafmtSbtCheck; scalafmtCheckAll; packageBin; shadedPackageBin; test;"
ci-test/test.sh
shell: bash
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ lazy val launchSub = (project in file("launcher-implementation"))
)

keepFullClasses := "xsbti.**" :: Nil
Proguard / proguard / javaOptions := Seq("-Xmx1G")
Proguard / proguardOptions ++= keepFullClasses.value map ("-keep public class " + _ + " {\n\tpublic protected * ;\n}")
Proguard / proguardInputFilter := { file =>
file.name match {
Expand Down

0 comments on commit fd4b25d

Please sign in to comment.