chaokunyang commented on PR #2485:
URL: https://github.com/apache/fory/pull/2485#issuecomment-3258512279

   > do you know if I am missing any CI test that I should exclude `fory-simd` 
from (due to running java version)? Scala CI seems to be failing still.
   
   You needs to use jdk17 for install java:
   ```yaml
     scala:
       name: Scala CI
       runs-on: ubuntu-latest
       steps:
         - uses: actions/checkout@v5
         - name: Set up JDK17
           uses: actions/setup-java@v4
           with:
             java-version: 17
             distribution: "temurin"
             cache: sbt
         - uses: sbt/setup-sbt@v1
         - name: Install fory java
           run: cd java && mvn -T10 --no-transfer-progress clean install 
-DskipTests && cd -
         - name: Test
           run: |
             cd scala && sbt +test && cd -
   ```
   
   Or just skip `fory-simd` in the ci.
   
   <img width="1872" height="490" alt="image" 
src="https://github.com/user-attachments/assets/f18ea4fd-46b1-4e63-a30a-d6f2115ef34c";
 />
   


-- 
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]

Reply via email to