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

GraalVM 20.3.0 support #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
java: [8]
steps:
- uses: actions/checkout@v2
- uses: olafurpg/setup-scala@v7
- uses: olafurpg/setup-scala@v10
with:
java-version: "adopt@1.${{ matrix.java }}"
- run: git fetch --tags || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: olafurpg/setup-scala@v2
- uses: olafurpg/setup-scala@v10
- uses: olafurpg/setup-gpg@v2
- run: git fetch --tags || true
- name: Publish ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ lazy val subs = project
.settings(
moduleName := "svm-subs",
crossVersion := CrossVersion.disabled,
libraryDependencies += "org.graalvm.nativeimage" % "svm" % "20.2.0" % "compile-internal",
libraryDependencies += "org.graalvm.nativeimage" % "svm" % "20.3.0" % "compile-internal",
sources in (Compile, doc) := Seq.empty,
javaHome in Compile := {
// force javac to fork by setting javaHome to workaround https://github.com/sbt/zinc/issues/520
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To use this project, add to `build.sbt`
)
```

Replace GRAALVM_VERSION with a GraalVM version like "20.2.0". See [releases](https://github.com/scalameta/svm-subs/releases) for what GraalVM versions are supported.
Replace GRAALVM_VERSION with a GraalVM version like "20.3.0". See [releases](https://github.com/scalameta/svm-subs/releases) for what GraalVM versions are supported.

That's it. The next time you generate a native image you should not get this error anymore.

Expand Down