mbien commented on code in PR #9302:
URL: https://github.com/apache/netbeans/pull/9302#discussion_r3018724221
##########
.github/workflows/main.yml:
##########
@@ -2581,14 +2579,11 @@ jobs:
- name: Setup GraalVM ${{ matrix.graal }}
run: |
-
URL=https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-${{
matrix.graal }}/graalvm-ce-java17-linux-amd64-${{ matrix.graal }}.tar.gz
+
URL=https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${{
matrix.graal }}/graalvm-community-jdk-${{ matrix.graal }}_linux-x64_bin.tar.gz
curl -L $URL | tar -xz
- GRAALVM=`pwd`/graalvm-ce-java17-${{ matrix.graal }}
+ GRAALVM=`pwd`/graalvm-community-jdk-${{ matrix.graal }}
Review Comment:
looks like the extracted folder is now different from the archive name.
this worked for me locally:
```
GRAALVM=$(realpath graalvm-community-openjdk-*)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists