Skip to content

Commit 913b162

Browse files
committed
[SPARK-54467][INFRA][FOLLOWUP] Disable actions/cache on python_hosted_runner_test.yml too
### What changes were proposed in this pull request? This PR is a follow-up of the following to disable `actions/cache` on `python_hosted_runner_test.yml` and remove `timeout-minutes` temporarily, too. - #53180 ### Why are the changes needed? Currently, GitHub Action has an outage on `actions/cache` step due to `hashFiles` fails . - https://github.com/orgs/community/discussions/180160 - actions/runner-images#13341 Apache Spark MacOS CIs are affected like the following currently. - https://github.com/apache/spark/actions/workflows/build_python_3.11_macos.yml - https://github.com/apache/spark/actions/workflows/build_python_3.11_macos26.yml ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manual review. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #53181 from dongjoon-hyun/SPARK-54467-2. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent 3c50fda commit 913b162

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/python_hosted_runner_test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959
build:
6060
name: "Build modules: ${{ matrix.modules }}"
6161
runs-on: ${{ inputs.os }}
62-
timeout-minutes: 150
62+
# TODO(SPARK-54466): https://github.com/actions/runner-images/issues/13341
63+
# timeout-minutes: 150
6364
strategy:
6465
fail-fast: false
6566
matrix:
@@ -117,6 +118,8 @@ jobs:
117118
git -c user.name='Apache Spark Test Account' -c user.email='sparktestacc@gmail.com' commit -m "Merged commit" --allow-empty
118119
# Cache local repositories. Note that GitHub Actions cache has a 10G limit.
119120
- name: Cache SBT and Maven
121+
# TODO(SPARK-54466): https://github.com/actions/runner-images/issues/13341
122+
if: ${{ runner.os != 'macOS' }}
120123
uses: actions/cache@v4
121124
with:
122125
path: |
@@ -127,6 +130,8 @@ jobs:
127130
restore-keys: |
128131
build-
129132
- name: Cache Coursier local repository
133+
# TODO(SPARK-54466): https://github.com/actions/runner-images/issues/13341
134+
if: ${{ runner.os != 'macOS' }}
130135
uses: actions/cache@v4
131136
with:
132137
path: ~/.cache/coursier

0 commit comments

Comments
 (0)