Skip to content

Commit 9a5f634

Browse files
committed
fix: install jextract in actions
1 parent 71b4319 commit 9a5f634

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/build-core.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
distribution: 'temurin'
2525
- name: Setup Gradle
2626
uses: gradle/actions/setup-gradle@v3
27+
- name: Download jextract
28+
run: |
29+
mkdir -p $HOME/.local/jextract
30+
curl -L https://download.java.net/java/early_access/jextract/22/6/openjdk-22-jextract+6-47_linux-x64_bin.tar.gz | tar -xz -C $HOME/.local/jextract --strip-components=1
31+
echo "$HOME/.local/jextract/bin" >> $GITHUB_PATH
32+
- name: Verify jextract is in PATH
33+
run: which jextract
2734
- name: Build & Publish
2835
env:
2936
TAG_VERSION: ${{ github.ref_name }}

0 commit comments

Comments
 (0)