Skip to content

Commit

Permalink
Upgrade to GraalVM JDK 23.0.1 and Truffle 24.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Oct 20, 2024
1 parent f68c6c0 commit 4f7956b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
os: [ubuntu-20.04, ubuntu-20.04-aarch64, windows-2022, macos-13, macos-14]
type: [native, jvm]
env:
JAVA_VERSION: "22"
JAVA_VERSION: "23"
JDK_IDENTIFIER: "latest"
MX_ENV: "trufflesqueak-${{ matrix.type }}"
VERBOSE_GRAALVM_LAUNCHERS: true
Expand All @@ -155,7 +155,7 @@ jobs:
- name: Set up Oracle GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: '${{ env.JAVA_VERSION }}.0.2'
java-version: '${{ env.JAVA_VERSION }}.0.1'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.type == 'native' }}
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
run: 'trufflesqueak --code "(String streamContents: [:s | SystemReporter basicNew reportImage: s; reportVM: s; reportVMParameters: s]) withUnixLineEndings" images/test-64bit.image'
- name: Run trufflesqueak-polyglot-get on TruffleSqueak JVM standalone
run: |
trufflesqueak-polyglot-get -v 24.0.0 -a js
trufflesqueak-polyglot-get -v 24.1.1 -a js
trufflesqueak --code "Polyglot eval: 'js' string: 'new Object({hello_world: 42})'" images/test-64bit.image
if: ${{ matrix.type == 'jvm' }}
- name: Upload TruffleSqueak standalone
Expand Down
4 changes: 2 additions & 2 deletions mx.trufflesqueak/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# METADATA
# ==========================================================================
"name": "trufflesqueak",
"mxversion": "7.0.3",
"mxversion": "7.33.1",
"versionConflictResolution": "latest",

"version": "24.1.0",
Expand Down Expand Up @@ -53,7 +53,7 @@
"suites": [{
"name": "truffle",
"subdir": True,
"version": "vm-24.0.2",
"version": "vm-24.1.1",
"urls": [{
"url": "https://github.com/oracle/graal",
"kind": "git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public final class SqueakLanguageConfig {
public static final String MIME_TYPE = "application/x-smalltalk";
public static final String NAME = "Squeak/Smalltalk";
public static final String ST_MIME_TYPE = "text/x-smalltalk";
public static final String VERSION = "24.0.2"; // sync with Truffle import
public static final String VERSION = "24.1.1"; // sync with Truffle import
public static final String WEBSITE = "https://github.com/hpi-swa/trufflesqueak";

public static final String[][] SUPPORTED_IMAGES = {
Expand Down

0 comments on commit 4f7956b

Please sign in to comment.