File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,14 @@ jobs:
4141 cd GPULlama3.java/external/tornadovm
4242 source venv/bin/activate
4343
44- # Use a different Maven command to ensure the opencl-backend is used
45- ./mvnw -Pjdk21,opencl-backend -Dtornado.backend=opencl install
44+ # Use the target that explicitly selects the Graal JDK 21 profile.
45+ make graal-jdk-21
4646
47- # After build, find and update TORNADO_SDK to the actual SDK location
48- # Look for the OpenCL specific directory instead of tornado-sdk-*
47+ # The subsequent path finding logic needs to be robust:
48+ # Assuming the 'bin/compile' script correctly creates the SDK in a known location.
49+ # Based on the previous successful log fragment, we'll search for the OpenCL SDK name.
4950 TORNADO_SDK_DIR=$(ls -d dist/tornadovm-*-opencl-linux-amd64 | head -1)
5051
51- # The SDK might be one level deeper, depending on the structure, but we'll try this first.
5252 FULL_TORNADO_SDK="${PWD}/${TORNADO_SDK_DIR}"
5353 echo "TORNADO_SDK=${FULL_TORNADO_SDK}" >> $GITHUB_ENV
5454 echo "Updated TORNADO_SDK to: ${FULL_TORNADO_SDK}"
You can’t perform that action at this time.
0 commit comments