diff --git a/.github/workflows/python_hosted_runner_test.yml b/.github/workflows/python_hosted_runner_test.yml index 51c26bcc21bd..564ae7d65679 100644 --- a/.github/workflows/python_hosted_runner_test.yml +++ b/.github/workflows/python_hosted_runner_test.yml @@ -59,7 +59,8 @@ jobs: build: name: "Build modules: ${{ matrix.modules }}" 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: @@ -117,6 +118,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: | @@ -127,6 +130,8 @@ jobs: restore-keys: | build- - name: Cache Coursier local repository + # TODO(SPARK-54466): https://github.com/actions/runner-images/issues/13341 + if: ${{ runner.os != 'macOS' }} uses: actions/cache@v4 with: path: ~/.cache/coursier