From d946f5c3dc792deaf28a7db3c27f8cf89abddc39 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Sat, 22 Nov 2025 23:22:51 -0800 Subject: [PATCH] [SPARK-54467][INFRA] Disable `actions/cache` on MacOS CIs --- .github/workflows/maven_test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven_test.yml b/.github/workflows/maven_test.yml index b53c0f5e18bf..a3f20bdbd910 100644 --- a/.github/workflows/maven_test.yml +++ b/.github/workflows/maven_test.yml @@ -56,7 +56,8 @@ jobs: build: name: "Build modules: ${{ matrix.modules }} ${{ matrix.comment }}" runs-on: ${{ inputs.os }} - timeout-minutes: 150 + # TODO(SPARK-54466): https://github.com/actions/runner-images/issues/13341 + # timeout-minutes: 150 strategy: fail-fast: false matrix: @@ -143,6 +144,8 @@ jobs: git -c user.name='Apache Spark Test Account' -c user.email='sparktestacc@gmail.com' commit -m "Merged commit" --allow-empty # Cache local repositories. Note that GitHub Actions cache has a 10G limit. - name: Cache SBT and Maven + # TODO(SPARK-54466): https://github.com/actions/runner-images/issues/13341 + if: ${{ runner.os != 'macOS' }} uses: actions/cache@v4 with: path: | @@ -153,6 +156,8 @@ jobs: restore-keys: | build- - name: Cache Maven local repository + # TODO(SPARK-54466): https://github.com/actions/runner-images/issues/13341 + if: ${{ runner.os != 'macOS' }} uses: actions/cache@v4 with: path: ~/.m2/repository