Skip to content

Commit

Permalink
bump GitHub CI to JDK 21 and mill 0.11.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencer committed Oct 14, 2023
1 parent 821bc9b commit ccfcb9d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/install-jextract/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
file-name:
description: 'File name to install'
required: false
default: 'openjdk-20-jextract+1-2_linux-x64_bin.tar.gz'
default: 'openjdk-21-jextract+1-2_linux-x64_bin.tar.gz'

runs:
using: composite
Expand All @@ -16,7 +16,7 @@ runs:
key: jextract-${{ runner.os }}-${{ inputs.file-name }}

- shell: bash
if: steps.cache-espresso.outputs.cache-hit != 'true'
if: steps.cache-jextract.outputs.cache-hit != 'true'
run: |
mkdir -p jextract
cd jextract
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '20'
java-version: '21'
cache: 'sbt'
- name: Install Mill
uses: jodersky/setup-mill@v0.3.0
with:
mill-version: 0.11.0
mill-version: 0.11.5
- name: Install CIRCT
uses: circt/install-circt@v1.0.0
with:
Expand Down
2 changes: 1 addition & 1 deletion common.sc
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ trait HasJextractGeneratedSources
}
}

override def javacOptions = T(super.javacOptions() ++ Seq("--enable-preview", "--release", "20"))
override def javacOptions = T(super.javacOptions() ++ Seq("--enable-preview", "--release", "21"))
}

trait CIRCTPanamaBinderModule
Expand Down

0 comments on commit ccfcb9d

Please sign in to comment.