Skip to content

Commit

Permalink
Bump graalvm to 22.2.0 for the MS-Windows release binary
Browse files Browse the repository at this point in the history
Uses workaround for UPX issue with 22.2.0, see
oracle/graal#4340
  • Loading branch information
ikappaki committed Sep 29, 2022
1 parent f6481e7 commit b963160
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ jobs:
windows:
name: Build native Windows binary
needs: [build-lib-jar, build-cli-jar]
runs-on: windows-2022
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
Expand Down Expand Up @@ -358,13 +358,18 @@ jobs:
- name: Install GraalVM
uses: DeLaGuardo/setup-graalvm@master
with:
graalvm: 21.3.0
graalvm: 22.2.0
java: java11

- name: Install native-image component
run: |
gu.cmd install native-image
# see https://github.com/oracle/graal/issues/4340
- name: GraalVM 22.2.0 workaround to support UPX compression
run: |
7z d "$env:JAVA_HOME\lib\svm\builder\svm.jar" com/oracle/svm/core/windows/WindowsImageHeapProviderFeature.class
- name: Build Windows native image
env:
CLOJURE_LSP_JAR: ..\clojure-lsp-standalone.jar
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Fix issue with changes being reporting with spurious and incorrect line endings on MS-Windows text files. #1211
- Index internal data by URI instead of filename, to minimize conversion between these formats when running queries. #1207
- Add support to enable trace logs on server via `--trace` flag. (For latest Emacs's lsp-mode this can be enabled easyly via `lsp-clojure-trace-enable` variable)
- Bump graalvm version for MS-Windows to 22.2.0, in sync with the other archs. #1211

- Editor
- Fix to avoid error when checking code actions from an #_x uneval node. #1227
Expand Down

0 comments on commit b963160

Please sign in to comment.