From ebe0b50a7ccd4762fc13757fa9a254f34104d655 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Sat, 12 Apr 2025 21:07:29 +0900 Subject: [PATCH] [SPARK-51783] Support `ubuntu-24.04-arm` in `build-test` test pipeline --- .github/workflows/build_and_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index c7e7189b..7196e5e2 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -28,9 +28,10 @@ jobs: config: .github/.licenserc.yaml build-test: name: "Build Test CI" - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ 'ubuntu-latest', 'ubuntu-24.04-arm' ] java-version: [ 17, 21 ] steps: - name: Checkout repository