Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .github/workflows/beam_PostCommit_Python_Arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ jobs:
beam_PostCommit_Python_Arm:
name: ${{ matrix.job_name }} ${{ matrix.python_version }}
runs-on: [self-hosted, ubuntu-24.04, main]
timeout-minutes: 480
# Python 3.14 multiarch container builds take much longer than other versions.
timeout-minutes: ${{ matrix.python_version == '3.14' && 600 || 480 }}
strategy:
fail-fast: false
matrix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
startsWith(github.event.comment.body, 'Run Python ValidatesContainer Dataflow ARM')

runs-on: ubuntu-22.04
# Python 3.14 multiarch container builds compile many deps from source on arm64.
timeout-minutes: ${{ matrix.python_version == '3.14' && 300 || 120 }}
steps:
- uses: actions/checkout@v7
- name: Free Disk Space (Ubuntu)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update_python_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
runs-on: [self-hosted, ubuntu-24.04, main]
needs: set-properties
name: Update Python Dependencies
timeout-minutes: 180
steps:
- name: Checkout code
uses: actions/checkout@v7
Expand Down
Loading