Skip to content

Commit 439bc10

Browse files
committed
Merge branch 'master' of https://github.com/ahmedabu98/beam into add-files-large-batch
2 parents 23b6a4b + 60723cd commit 439bc10

58 files changed

Lines changed: 1461 additions & 143 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.asf.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ github:
5151

5252
protected_branches:
5353
master: {}
54+
release-2.73: {}
5455
release-2.72.0-postrelease: {}
5556
release-2.72: {}
5657
release-2.71.0-postrelease: {}

.github/workflows/beam_PostCommit_Java_ValidatesRunner_Dataflow_V2_Streaming.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@ jobs:
7676
uses: ./.github/actions/setup-environment-action
7777
with:
7878
java-version: default
79+
- name: Authenticate to GCP
80+
uses: google-github-actions/auth@7c6bc770dae815cd3e89ee6cdf493a5fab2cc093
81+
with:
82+
service_account: ${{ secrets.GCP_SA_EMAIL }}
83+
credentials_json: ${{ secrets.GCP_SA_KEY }}
84+
- name: Set up Cloud SDK
85+
uses: google-github-actions/setup-gcloud@aa5489c8933f4cc7a4f7d45035b3b1440c9c10db
7986
- name: run validatesRunnerV2Streaming script
8087
uses: ./.github/actions/gradle-command-self-hosted-action
8188
with:

.github/workflows/beam_PostCommit_Python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
job_name: ['beam_PostCommit_Python']
6363
job_phrase: ['Run Python PostCommit']
6464
python_version: ['3.10', '3.11', '3.12', '3.13','3.14']
65-
os: [[self-hosted, ubuntu-20.04, highmem22]]
65+
os: [[self-hosted, ubuntu-24.04, highmem22]]
6666
if: |
6767
github.event_name == 'workflow_dispatch' ||
6868
github.event_name == 'pull_request_target' ||

.github/workflows/beam_PostCommit_Python_Dependency.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ env:
5353
jobs:
5454
beam_PostCommit_Python_Dependency:
5555
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
56-
runs-on: [self-hosted, ubuntu-20.04, main]
56+
runs-on: [self-hosted, ubuntu-24.04, main]
5757
strategy:
5858
fail-fast: false
5959
matrix:

.github/workflows/beam_PostCommit_Python_Examples_Direct.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
github.event_name == 'workflow_dispatch' ||
5656
github.event_name == 'pull_request_target' ||
5757
startsWith(github.event.comment.body, 'Run Python Examples_Direct')
58-
runs-on: [self-hosted, ubuntu-20.04, main]
58+
runs-on: [self-hosted, ubuntu-24.04, main]
5959
timeout-minutes: 120
6060
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
6161
strategy:

.github/workflows/beam_PostCommit_Python_Examples_Flink.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
github.event_name == 'workflow_dispatch' ||
5656
github.event_name == 'pull_request_target' ||
5757
startsWith(github.event.comment.body, 'Run Python Examples_Flink')
58-
runs-on: [self-hosted, ubuntu-20.04, highmem22]
58+
runs-on: [self-hosted, ubuntu-24.04, highmem22]
5959
timeout-minutes: 240
6060
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
6161
strategy:

.github/workflows/beam_PostCommit_Python_Examples_Spark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
github.event_name == 'workflow_dispatch' ||
5656
github.event_name == 'pull_request_target' ||
5757
startsWith(github.event.comment.body, 'Run Python Examples_Spark')
58-
runs-on: [self-hosted, ubuntu-20.04, main]
58+
runs-on: [self-hosted, ubuntu-24.04, main]
5959
timeout-minutes: 120
6060
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
6161
strategy:

.github/workflows/beam_PostCommit_Python_ValidatesContainer_Dataflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
github.event_name == 'workflow_dispatch' ||
5858
github.event_name == 'pull_request_target' ||
5959
startsWith(github.event.comment.body, 'Run Python Dataflow ValidatesContainer')
60-
runs-on: [self-hosted, ubuntu-20.04, main]
60+
runs-on: [self-hosted, ubuntu-24.04, main]
6161
timeout-minutes: 100
6262
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
6363
strategy:

.github/workflows/beam_PostCommit_Python_ValidatesContainer_Dataflow_With_RC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
github.event_name == 'workflow_dispatch' ||
5656
github.event_name == 'pull_request_target' ||
5757
startsWith(github.event.comment.body, 'Run Python RC Dataflow ValidatesContainer')
58-
runs-on: [self-hosted, ubuntu-20.04, main]
58+
runs-on: [self-hosted, ubuntu-24.04, main]
5959
timeout-minutes: 300
6060
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
6161
strategy:

.github/workflows/beam_PostCommit_Python_ValidatesRunner_Dataflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
github.event_name == 'workflow_dispatch' ||
5656
github.event_name == 'pull_request_target' ||
5757
startsWith(github.event.comment.body, 'Run Python Dataflow ValidatesRunner')
58-
runs-on: [self-hosted, ubuntu-20.04, main]
58+
runs-on: [self-hosted, ubuntu-24.04, main]
5959
timeout-minutes: 200
6060
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
6161
strategy:

0 commit comments

Comments
 (0)