Skip to content

Commit

Permalink
different between graalvm 22.0 and 23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Weaxs committed Mar 6, 2024
1 parent d31a8bc commit 377e524
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test_with_graaljdk_22.0.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test with GraalVM JDK
name: Test with GraalVM JDK 22.0

on:
push:
Expand All @@ -22,7 +22,6 @@ jobs:
cache: maven
- name: Install dependencies
run: |
gu upgrade
gu install python
gu install R
gu install js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_with_graaljdk_latest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test with OpenJDK
name: Test with GraalVM JDK latest

on:
push:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ public class PolyglotContextFactory {
public Context pythonCtx() {
return Context.newBuilder("python")
.option("python.PosixModuleBackend", "native")
.option("python.ForceImportSite", "true")

// python venv exe path
// .option("python.Executable", "/xxx/.python/venv/bin/exe")
.out(PY_OUT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ public class PolyglotContextFactory {
public Context pythonCtx() {
return Context.newBuilder("python")
.option("python.PosixModuleBackend", "native")
.option("python.ForceImportSite", "true")

// python venv exe path
// .option("python.Executable", "/xxx/.python/venv/bin/exe")
.out(PY_OUT)
Expand Down

0 comments on commit 377e524

Please sign in to comment.