Use official Iceberg 1.10.0 release #722
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
| name: ci | |
| on: [push, pull_request] | |
| jobs: | |
| build-images: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - image: testing/almalinux9-oj17 | |
| platforms: linux/amd64,linux/arm64 | |
| - image: testing/almalinux9-oj17-openldap-referrals | |
| platforms: linux/amd64,linux/arm64 | |
| test: openldap | |
| - image: testing/almalinux9-oj17-openldap-active-directory | |
| platforms: linux/amd64,linux/arm64 | |
| test: openldap-active-directory | |
| - image: testing/spark3-iceberg | |
| platforms: linux/amd64,linux/arm64 | |
| test: spark3-iceberg | |
| - image: testing/spark4-iceberg | |
| platforms: linux/amd64,linux/arm64 | |
| test: spark4-iceberg | |
| - image: testing/spark4-delta | |
| platforms: linux/amd64,linux/arm64 | |
| test: spark4-delta | |
| - image: testing/spark3-hudi | |
| platforms: linux/amd64,linux/arm64 | |
| test: spark3-hudi | |
| - image: testing/kerberos | |
| platforms: linux/amd64,linux/arm64 | |
| test: kerberos | |
| - image: testing/hive3.1-hive | |
| platforms: linux/amd64,linux/arm64 | |
| test: hive3.1-hive | |
| - image: testing/hive4.0-hive | |
| # Haven't added `linux/arm64` platform as test image fails with `The requested image's platform (linux/arm64) does not match the detected host platform (linux/amd64/v3) and no specific platform was requested` | |
| platforms: linux/amd64 | |
| test: hive4.0-hive | |
| - image: testing/hdp3.1-hive-kerberized | |
| test: hdp3.1-hive | |
| - image: build/sphinx | |
| platforms: linux/amd64,linux/arm64 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # checkout tags so version in Manifest is set properly | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v2 | |
| - name: Build ${{ matrix.image }} | |
| env: | |
| PLATFORMS: ${{ matrix.platforms }} | |
| run: make "${{ matrix.image }}" | |
| - name: Test ${{ matrix.test }} | |
| env: | |
| PLATFORMS: ${{ matrix.platforms }} | |
| if: ${{ matrix.test != '' }} | |
| shell: 'script -q -e -c "bash {0}"' | |
| run: make test IMAGE_TO_TEST="${{ matrix.test }}" |