| layout | developer-doc | |||||
|---|---|---|---|---|---|---|
| title | Upgrading GraalVM | |||||
| category | infrastructure | |||||
| tags |
|
|||||
| order | 5 |
After upgrading the project to a newer version of GraalVM, all developers must take the following actions to be able to continue development after the upgrade:
- Download the new JVM version and set it as the default for the project. If you use IntelliJ, you will also need to update the JVM used for the project in the project settings.
- Re-run
sbt bootstrapto get the updated Truffle JAR (if there are issues updating, removingengine/runtime/build-cachedirectory may help). - Do a full clean (it may not always be required, but not doing it often
leads to problems so it is much safer to do it) by running
enso/clean. - To be able to build or run tests for the
launcherproject, Native Image for the new GraalVM version has to be installed, as it is not included by default. This can be done with<path-to-graal-home>/bin/gu install native-image.- If there are problems building the Native Image, removing
engine/launcher/build-cache(which contains the downloadedmuslpackage) may help.
- If there are problems building the Native Image, removing
If you are upgrading the build to a new GraalVM version, you additionally need to perform the following tasks:
- Change the expected GraalVM version in the
build.sbtconfiguration. This is both a version number and (if it is changed), the associated version of Java. - Change the expected GraalVM version in the
release-publish-editionworkflow. - Change the base image in the
Dockerfileto contain the correct GraalVM version. - Just to be sure, search for the version regex in all the files in the repo.
- Ensure that all deprecations have been handled.