Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/maven_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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: |
Expand All @@ -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
Expand Down