Skip to content

Commit

Permalink
try Java 22-ea and GraalVM 20
Browse files Browse the repository at this point in the history
  • Loading branch information
mayerrobert committed Aug 13, 2023
1 parent b7ce9ec commit ad251e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "scribbles/**"

env:
JAVA_VERSION: 17
JAVA_VERSION: 20

jobs:
build:
Expand All @@ -26,9 +26,8 @@ jobs:

- uses: graalvm/setup-graalvm@v1
with:
distribution: 'graalvm-community'
distribution: 'graalvm'
java-version: ${{ env.JAVA_VERSION }}
components: 'native-image'
github-token: ${{ secrets.GITHUB_TOKEN }}
native-image-job-reports: 'true'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '17', '20', '21-ea' ]
java: [ '8', '17', '20', '21-ea', '22-ea' ]
name: Java ${{ matrix.Java }} CI

steps:
Expand Down
2 changes: 1 addition & 1 deletion lambda/src/main/java/io/github/jmurmel/LambdaJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -1913,7 +1913,7 @@ private static ConsCell nconc2(ConsCell first, Object rest) {

/*
qq-expand and qq-expand-list are based on "Quasiquotation in Lisp (1999) by Alan Bawden"
https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.309.227
https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.309.227, https://3e8.org/pub/scheme/doc/Quasiquotation%20in%20Lisp%20(Bawden).pdf

(defun qq-expand (x)
(cond ((null x)
Expand Down

0 comments on commit ad251e9

Please sign in to comment.