GH-1283: Optimize number of build compilations in CI #1855
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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: Test | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| - '!dependabot/**' | |
| tags: | |
| - '**' | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| env: | |
| BUILD_JDK: "17" | |
| DOCKER_VOLUME_PREFIX: ".docker/" | |
| MAVEN: 3.9.16 | |
| jobs: | |
| build-java: | |
| name: Build Java artifacts | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.title, 'WIP') }} | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout Arrow | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Cache Docker Volumes | |
| uses: actions/cache@v6 | |
| with: | |
| path: .docker/maven-cache | |
| key: java-build-${{ env.BUILD_JDK }}-${{ env.MAVEN }}-${{ hashFiles('compose.yaml', '**/pom.xml') }} | |
| restore-keys: java-build-${{ env.BUILD_JDK }}-${{ env.MAVEN }}- | |
| - name: Build without tests | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| JDK: ${{ env.BUILD_JDK }} | |
| run: | | |
| docker compose run \ | |
| --rm \ | |
| -e CI=true \ | |
| -e "DEVELOCITY_ACCESS_KEY=$DEVELOCITY_ACCESS_KEY" \ | |
| ubuntu-artifacts | |
| sudo chown -R "$(id -u):$(id -g)" .docker | |
| - name: Pack reusable artifacts | |
| run: | | |
| tar -czf java-build.tgz \ | |
| .docker/java-build \ | |
| .docker/maven-cache/repository/org/apache/arrow | |
| - name: Upload reusable artifacts | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: java-build | |
| path: java-build.tgz | |
| retention-days: 1 | |
| - name: Exclude reactor artifacts from Maven dependency cache | |
| run: rm -rf .docker/maven-cache/repository/org/apache/arrow | |
| test-java: | |
| name: ${{ matrix.name || format('AMD64 Ubuntu JDK {0} Maven 3.9.16', matrix.jdk) }} | |
| needs: build-java | |
| runs-on: ${{ matrix.os }} | |
| if: ${{ !contains(github.event.pull_request.title, 'WIP') }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| jdk: [17, 21, 25] | |
| os: [ubuntu-latest] | |
| include: | |
| - os: ubuntu-latest | |
| compose_service: ubuntu-test-prebuilt | |
| - name: AMD64 macOS 15-intel Java JDK 17 | |
| os: macos-15-intel | |
| jdk: 17 | |
| - name: AArch64 macOS latest Java JDK 17 | |
| os: macos-latest | |
| jdk: 17 | |
| - name: AMD64 Windows Server 2022 Java JDK 17 | |
| os: windows-latest | |
| jdk: 17 | |
| env: | |
| JDK: ${{ matrix.jdk }} | |
| steps: | |
| - name: Checkout Arrow | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: recursive | |
| - name: Set up Java | |
| if: ${{ !matrix.compose_service }} | |
| uses: actions/setup-java@v6 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.jdk }} | |
| cache: 'maven' | |
| - name: Cache Docker Volumes | |
| if: ${{ matrix.compose_service }} | |
| uses: actions/cache@v6 | |
| with: | |
| path: .docker/maven-cache | |
| key: java-build-${{ env.BUILD_JDK }}-${{ env.MAVEN }}-${{ hashFiles('compose.yaml', '**/pom.xml') }} | |
| restore-keys: java-build-${{ env.BUILD_JDK }}-${{ env.MAVEN }}- | |
| - name: Download reusable artifacts | |
| uses: actions/download-artifact@v6 | |
| with: | |
| name: java-build | |
| - name: Restore reusable artifacts | |
| shell: bash | |
| run: | | |
| rm -rf \ | |
| .docker/java-build \ | |
| .docker/maven-cache/repository/org/apache/arrow | |
| tar -xzf java-build.tgz | |
| - name: Restore reusable artifacts for hosted runner | |
| if: ${{ !matrix.compose_service }} | |
| shell: bash | |
| run: | | |
| cp -a .docker/java-build/build build | |
| rm -rf "${HOME}/.m2/repository/org/apache/arrow" | |
| mkdir -p "${HOME}/.m2/repository/org/apache" | |
| cp -a .docker/maven-cache/repository/org/apache/arrow "${HOME}/.m2/repository/org/apache/" | |
| - name: Test prebuilt artifacts on macOS/Windows | |
| if: ${{ !matrix.compose_service }} | |
| shell: bash | |
| env: | |
| ARROW_JAVA_TEST_PREBUILT: "ON" | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| run: ci/scripts/test.sh . build jni | |
| - name: Test prebuilt artifacts on Ubuntu Docker | |
| if: ${{ matrix.compose_service }} | |
| shell: bash | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| run: | | |
| docker compose run \ | |
| --rm \ | |
| -e CI=true \ | |
| -e "DEVELOCITY_ACCESS_KEY=$DEVELOCITY_ACCESS_KEY" \ | |
| ${{ matrix.compose_service }} | |
| - name: Exclude reactor artifacts from hosted Maven dependency cache | |
| if: ${{ !matrix.compose_service && always() }} | |
| shell: bash | |
| run: rm -rf "${HOME}/.m2/repository/org/apache/arrow" | |
| build-cdata: | |
| name: Build C Data artifacts | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.title, 'WIP') }} | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout Arrow | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Cache Docker Volumes | |
| uses: actions/cache@v6 | |
| with: | |
| path: .docker/maven-cache | |
| key: cdata-${{ env.BUILD_JDK }}-${{ env.MAVEN }}-${{ hashFiles('compose.yaml', '**/pom.xml') }} | |
| restore-keys: cdata-${{ env.BUILD_JDK }}-${{ env.MAVEN }}- | |
| - name: Build C Data without tests | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| JDK: ${{ env.BUILD_JDK }} | |
| run: | | |
| docker compose run \ | |
| --rm \ | |
| -e CI=true \ | |
| -e "DEVELOCITY_ACCESS_KEY=$DEVELOCITY_ACCESS_KEY" \ | |
| cdata-artifacts | |
| sudo chown -R "$(id -u):$(id -g)" .docker | |
| - name: Pack reusable C Data artifacts | |
| run: | | |
| tar -czf cdata-build.tgz \ | |
| .docker/cdata-build \ | |
| .docker/cdata-jni-dist \ | |
| .docker/maven-cache/repository/org/apache/arrow | |
| - name: Upload reusable C Data artifacts | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: cdata-build | |
| path: cdata-build.tgz | |
| retention-days: 1 | |
| - name: Exclude reactor artifacts from Maven dependency cache | |
| run: rm -rf .docker/maven-cache/repository/org/apache/arrow | |
| test-cdata: | |
| name: AMD64 Conda JNI JDK ${{ matrix.jdk }} Maven 3.9.16 | |
| needs: build-cdata | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.title, 'WIP') }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| jdk: [17, 21, 25] | |
| env: | |
| JDK: ${{ matrix.jdk }} | |
| steps: | |
| - name: Checkout Arrow | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: recursive | |
| - name: Cache Docker Volumes | |
| uses: actions/cache@v6 | |
| with: | |
| path: .docker/maven-cache | |
| key: cdata-${{ env.BUILD_JDK }}-${{ env.MAVEN }}-${{ hashFiles('compose.yaml', '**/pom.xml') }} | |
| restore-keys: cdata-${{ env.BUILD_JDK }}-${{ env.MAVEN }}- | |
| - name: Download reusable C Data artifacts | |
| uses: actions/download-artifact@v6 | |
| with: | |
| name: cdata-build | |
| - name: Restore reusable C Data artifacts | |
| run: | | |
| rm -rf \ | |
| .docker/cdata-build \ | |
| .docker/cdata-jni-dist \ | |
| .docker/maven-cache/repository/org/apache/arrow | |
| tar -xzf cdata-build.tgz | |
| - name: Test C Data without compiler lifecycle | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| run: | | |
| docker compose run \ | |
| --rm \ | |
| -e CI=true \ | |
| -e "DEVELOCITY_ACCESS_KEY=$DEVELOCITY_ACCESS_KEY" \ | |
| cdata-test-prebuilt |