We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14d79f commit 594a55bCopy full SHA for 594a55b
.github/workflows/release.yml
@@ -12,6 +12,9 @@ jobs:
12
release:
13
runs-on: ubuntu-latest
14
15
+ env:
16
+ JAVA_HOME: ${{ github.workspace }}/graalvm-ce-java11-22.3.3
17
+
18
steps:
19
- name: Check out code
20
uses: actions/checkout@v4
@@ -21,6 +24,13 @@ jobs:
21
24
with:
22
25
python-version: '3.11'
23
26
27
+ - name: Set up JDK 11 from GraalVM
28
+ run: |
29
+ echo "${{ env.JAVA_HOME }}/bin" >> $GITHUB_PATH
30
+ wget https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-22.3.3/graalvm-ce-java11-linux-amd64-22.3.3.tar.gz
31
+ tar -xvzf graalvm-ce-java11-linux-amd64-22.3.3.tar.gz
32
+ ${{ env.JAVA_HOME }}/bin/gu install native-image
33
34
- name: Install Poetry
35
run: |
36
curl -sSL https://install.python-poetry.org | python3 -
0 commit comments