| # |
| # 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: "Java CI" |
| on: |
| push: |
| branches: |
| - 'main' |
| - '0.*' |
| - '1.*' |
| - '2.*' |
| tags: |
| - 'apache-iceberg-**' |
| pull_request: |
| paths-ignore: |
| - '.github/ISSUE_TEMPLATE/**' |
| - '.github/workflows/api-binary-compatibility.yml' |
| - '.github/workflows/delta-conversion-ci.yml' |
| - '.github/workflows/docs-ci.yml' |
| - '.github/workflows/flink-ci.yml' |
| - '.github/workflows/hive-ci.yml' |
| - '.github/workflows/jmh-benchmarks-ci.yml' |
| - '.github/workflows/kafka-connect-ci.yml' |
| - '.github/workflows/labeler.yml' |
| - '.github/workflows/license-check.yml' |
| - '.github/workflows/open-api.yml' |
| - '.github/workflows/publish-snapshot.yml' |
| - '.github/workflows/recurring-jmh-benchmarks.yml' |
| - '.github/workflows/site-ci.yml' |
| - '.github/workflows/spark-ci.yml' |
| - '.github/workflows/stale.yml' |
| - '.gitignore' |
| - '.asf.yaml' |
| - 'dev/**' |
| - 'docker/**' |
| - 'docs/**' |
| - 'site/**' |
| - 'format/**' |
| - '.gitattributes' |
| - '**/README.md' |
| - 'CONTRIBUTING.md' |
| - '**/LICENSE' |
| - '**/NOTICE' |
| - 'doap.rdf' |
| |
| permissions: |
| contents: read |
| |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.ref }} |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} |
| |
| jobs: |
| core-tests: |
| runs-on: ubuntu-24.04 |
| strategy: |
| max-parallel: 15 |
| matrix: |
| jvm: [17, 21] |
| env: |
| SPARK_LOCAL_IP: localhost |
| steps: |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 |
| with: |
| persist-credentials: false |
| - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 |
| with: |
| distribution: zulu |
| java-version: ${{ matrix.jvm }} |
| - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 |
| with: |
| path: | |
| ~/.gradle/caches |
| ~/.gradle/wrapper |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} |
| restore-keys: ${{ runner.os }}-gradle- |
| - run: echo -e "$(ip addr show eth0 | grep "inet\b" | awk '{print $2}' | cut -d/ -f1)\t$(hostname -f) $(hostname -s)" | sudo tee -a /etc/hosts |
| - run: ./gradlew check -DsparkVersions= -DflinkVersions= -DkafkaVersions= -Pquick=true -x javadoc |
| - uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 |
| if: github.event_name == 'push' |
| with: |
| path: | |
| ~/.gradle/caches |
| ~/.gradle/wrapper |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} |
| - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7 |
| if: failure() |
| with: |
| name: test logs |
| path: | |
| **/build/testlogs |
| |
| build-checks: |
| runs-on: ubuntu-24.04 |
| strategy: |
| max-parallel: 15 |
| matrix: |
| jvm: [17, 21] |
| steps: |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 |
| with: |
| persist-credentials: false |
| - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 |
| with: |
| distribution: zulu |
| java-version: ${{ matrix.jvm }} |
| - run: ./gradlew -DallModules build -x test -x javadoc -x integrationTest |
| |
| build-javadoc: |
| runs-on: ubuntu-24.04 |
| strategy: |
| max-parallel: 15 |
| matrix: |
| jvm: [17, 21] |
| steps: |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 |
| with: |
| persist-credentials: false |
| - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 |
| with: |
| distribution: zulu |
| java-version: ${{ matrix.jvm }} |
| - run: ./gradlew -Pquick=true javadoc |