Skip to content

Commit fd4b25d

Browse files
authored
Merge pull request #112 from eed3si9n/wip/proguard
Increase the memory for proguard
2 parents 539dd33 + 188f3cb commit fd4b25d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
uses: sbt/setup-sbt@v1
3131
- name: Build and test
3232
run: |
33-
sbt -v "mimaReportBinaryIssues; scalafmtSbtCheck; scalafmtCheckAll; shadedPackageBin; test;"
33+
sbt -v "mimaReportBinaryIssues; scalafmtSbtCheck; scalafmtCheckAll; packageBin; shadedPackageBin; test;"
3434
ci-test/test.sh
3535
shell: bash

build.sbt

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ lazy val launchSub = (project in file("launcher-implementation"))
125125
)
126126

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

0 commit comments

Comments
 (0)