Skip to content

Commit

Permalink
Fix java version; add heap for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thesamet committed Oct 19, 2023
1 parent 7ee72fc commit 1fc3497
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: 1.8
java-version: 8
distribution: temurin
- uses: olafurpg/setup-gpg@v3
- name: Publish ${{ github.ref }}
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ lazy val `sparksql-scalapb` = (projectMatrix in file("sparksql-scalapb"))
Test / PB.targets := Seq(
scalapbPlugin(scalapb.value.scalapbVersion) -> (Test / sourceManaged).value
),
Test / run / fork := true
Test / run / fork := true,
Test / javaOptions ++= Seq("-Xmx2G"),
)
.customRow(
scalaVersions = Seq(Scala212, Scala213),
Expand Down

0 comments on commit 1fc3497

Please sign in to comment.