| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| name: Bindings Java CI |
| |
| on: |
| push: |
| branches: |
| - main |
| tags: |
| - '*' |
| pull_request: |
| branches: |
| - main |
| paths: |
| - "core/**" |
| - "bindings/java/**" |
| - ".github/workflows/ci_bindings_java.yml" |
| schedule: |
| - cron: '30 1 * * 1' |
| workflow_dispatch: |
| |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} |
| cancel-in-progress: true |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| # Prevent parallel cache building in `test` job by building cache in a separate job |
| java-cache: |
| runs-on: ${{ matrix.os }} |
| strategy: |
| fail-fast: false |
| matrix: |
| os: |
| - ubuntu-latest |
| # ubuntu-24.04-arm shares the same platform as ubuntu-latest, so we don't need to build cache for it |
| - macos-latest |
| - windows-latest |
| |
| steps: |
| - uses: actions/checkout@v7 |
| - name: Set up JDK 25 |
| uses: actions/setup-java@v5 |
| with: |
| # The cache key is `setup-java-${{ platform }}-${{ packageManager }}-${{ fileHash }}`. Relevant params are: |
| # - cache |
| # - cache-dependency-path |
| java-version: 25 |
| distribution: zulu |
| cache: 'maven' |
| cache-dependency-path: | |
| bindings/java/pom.xml |
| |
| lint: |
| runs-on: ubuntu-latest |
| needs: java-cache |
| steps: |
| - uses: actions/checkout@v7 |
| - name: Set up Rust toolchain |
| uses: ./.github/actions/setup |
| with: |
| need-protoc: true |
| need-rocksdb: true |
| github-token: ${{ secrets.GITHUB_TOKEN }} |
| - name: Set up JDK 25 |
| uses: actions/setup-java@v5 |
| with: |
| # params must be in sync with `test` job: |
| # - cache |
| # - cache-dependency-path |
| distribution: zulu |
| java-version: 25 |
| cache: 'maven' |
| cache-dependency-path: | |
| bindings/java/pom.xml |
| - name: Build and check |
| working-directory: bindings/java |
| run: | |
| ./mvnw clean compile spotless:check |
| - name: Check Clippy |
| working-directory: bindings/java |
| run: cargo clippy -- -D warnings |
| |
| test: |
| runs-on: ${{ matrix.os }} |
| needs: java-cache |
| strategy: |
| fail-fast: false |
| matrix: |
| os: |
| - ubuntu-latest |
| - ubuntu-24.04-arm |
| - macos-latest |
| - windows-latest |
| java-version: |
| - 8 |
| - 11 |
| - 17 |
| - 21 |
| - 25 |
| steps: |
| - uses: actions/checkout@v7 |
| - name: Set up Rust toolchain |
| uses: ./.github/actions/setup |
| with: |
| need-protoc: true |
| need-rocksdb: true |
| github-token: ${{ secrets.GITHUB_TOKEN }} |
| - name: Set up JDK ${{ matrix.java-version }} |
| uses: actions/setup-java@v5 |
| with: |
| # params must be in sync with `test` job: |
| # - cache |
| # - cache-dependency-path |
| distribution: zulu |
| java-version: ${{ matrix.java-version }} |
| cache: 'maven' |
| cache-dependency-path: | |
| bindings/java/pom.xml |
| - name: Build and test |
| working-directory: bindings/java |
| # `mvn install` and `mvn artifact:compare` are required to verify reproducible builds: |
| # https://maven.apache.org/guides/mini/guide-reproducible-builds.html#how-to-test-my-maven-build-reproducibility |
| shell: bash |
| run: | |
| ./mvnw clean install -DskipTests |
| ./mvnw verify artifact:compare |
| |
| run_examples: |
| runs-on: ubuntu-latest |
| needs: java-cache |
| steps: |
| - uses: actions/checkout@v7 |
| - name: Set up Rust toolchain |
| uses: ./.github/actions/setup |
| with: |
| need-protoc: true |
| need-rocksdb: true |
| github-token: ${{ secrets.GITHUB_TOKEN }} |
| - name: Set up JDK 25 |
| uses: actions/setup-java@v5 |
| with: |
| # params must be in sync with `test` job: |
| # - cache |
| # - cache-dependency-path |
| distribution: zulu |
| java-version: 25 |
| cache: 'maven' |
| cache-dependency-path: | |
| bindings/java/pom.xml |
| # The example backs the snippet shown in the website guide. Running it keeps |
| # the docs honest: a broken example fails CI instead of shipping bad docs. |
| # `test-compile` builds the native library and the example, then `exec:java` |
| # runs it against the in-memory service with the test classpath. |
| - name: Run guide example |
| working-directory: bindings/java |
| run: | |
| ./mvnw test-compile exec:java \ |
| -Dexec.mainClass=org.apache.opendal.examples.Main \ |
| -Dexec.classpathScope=test |