Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for graalvm (0.03 sec)

  1. CHANGELOG.md

    _2021-01-30_
    
    **This release adds initial support for [GraalVM][graalvm].**
    
    GraalVM is an exciting new platform and we're eager to adopt it. The startup time improvements over
    the JVM are particularly impressive. Try it with okcurl:
    
    ```
    $ ./gradlew okcurl:nativeImage
    $ ./okcurl/build/graal/okcurl https://cash.app/robots.txt
    ```
    
    This is our first release that supports GraalVM. Our code on this platform is less mature than JVM
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  2. .github/workflows/build.yml

          - name: Configure JDK
            uses: actions/setup-java@v5
            with:
              distribution: 'zulu'
              java-version: 17
    
          - uses: graalvm/setup-graalvm@v1
            with:
              distribution: 'graalvm'
              java-version: 21
              github-token: ${{ secrets.GITHUB_TOKEN }}
              cache: 'gradle'
              native-image-job-reports: true
    
          - name: Setup Gradle
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top