-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dan/beam-22701
- Loading branch information
Showing
194 changed files
with
6,653 additions
and
6,798 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: PreCommit Community Metrics | ||
|
||
on: | ||
push: | ||
tags: ['v*'] | ||
branches: ['master', 'release-*'] | ||
paths: ['.test-infra/metrics/**', '.github/workflows/beam_PreCommit_CommunityMetrics.yml'] | ||
pull_request_target: | ||
branches: ['master', 'release-*'] | ||
paths: ['.test-infra/metrics/**'] | ||
issue_comment: | ||
types: [created] | ||
schedule: | ||
- cron: '* */6 * * *' | ||
|
||
#Setting explicit permissions for the action to avoid the default permissions which are `write-all` in case of pull_request_target event | ||
permissions: | ||
actions: write | ||
pull-requests: read | ||
checks: read | ||
contents: read | ||
deployments: read | ||
id-token: none | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
repository-projects: read | ||
security-events: read | ||
statuses: read | ||
|
||
jobs: | ||
beam_PreCommit_CommunityMetrics: | ||
name: beam_PreCommit_CommunityMetrics | ||
runs-on: [self-hosted, ubuntu-20.04, main] | ||
if: | | ||
github.event_name == 'push' || | ||
github.event_name == 'pull_request_target' || | ||
github.event_name == 'schedule' || | ||
github.event.comment.body == 'Run CommunityMetrics PreCommit' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install Java | ||
uses: actions/setup-java@v3.8.0 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8' | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
cache-read-only: false | ||
- name: Rerun on comment | ||
if: github.event.comment.body == 'Run CommunityMetrics PreCommit' | ||
uses: ./.github/actions/rerun-job-action | ||
with: | ||
pull_request_url: ${{ github.event.issue.pull_request.url }} | ||
github_repository: ${{ github.repository }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_job: ${{ github.job }} | ||
github_current_run_id: ${{ github.run_id }} | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Remove default github maven configuration | ||
run: rm ~/.m2/settings.xml | ||
- name: Install docker compose | ||
run: | | ||
sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose | ||
sudo chmod +x /usr/local/bin/docker-compose | ||
- name: Authenticate on GCP | ||
uses: google-github-actions/setup-gcloud@v0 | ||
with: | ||
service_account_email: ${{ secrets.GCP_SA_EMAIL }} | ||
service_account_key: ${{ secrets.GCP_SA_KEY }} | ||
project_id: ${{ secrets.GCP_PROJECT_ID }} | ||
- name: Install gcloud Kubectl | ||
run: gcloud components install kubectl | ||
- name: run Community Metrics PreCommit script | ||
run: ./gradlew :communityMetricsPreCommit -PKUBE_CONFIG_PATH='$HOME/.kube/config' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: Python PreCommit Docs | ||
|
||
on: | ||
pull_request_target: | ||
branches: [ "master", "release-*" ] | ||
paths: ["sdks/python/**"] | ||
issue_comment: | ||
types: [created] | ||
push: | ||
tags: ['v*'] | ||
branches: ['master', 'release-*'] | ||
paths: ["sdks/python/**",".github/workflows/beam_PreCommit_PythonDocs.yml"] | ||
schedule: | ||
- cron: '* */6 * * *' | ||
#Setting explicit permissions for the action to avoid the default permissions which are `write-all` in case of pull_request_target event | ||
permissions: | ||
actions: write | ||
pull-requests: read | ||
checks: read | ||
contents: read | ||
deployments: read | ||
id-token: none | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
repository-projects: read | ||
security-events: read | ||
statuses: read | ||
|
||
jobs: | ||
beam_PreCommit_PythonDocs: | ||
name: beam_PreCommit_PythonDocs | ||
if: | | ||
github.event_name == 'push' || | ||
github.event_name == 'pull_request_target' || | ||
github.event.comment.body == 'Run PythonDocs PreCommit' || | ||
github.event_name == 'schedule' | ||
runs-on: [self-hosted, ubuntu-20.04, main] | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Rerun on comment | ||
if: github.event.comment.body == 'Run PythonDocs PreCommit' | ||
uses: ./.github/actions/rerun-job-action | ||
with: | ||
pull_request_url: ${{ github.event.issue.pull_request.url }} | ||
github_repository: ${{ github.repository }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_job: ${{ github.job }} | ||
github_current_run_id: ${{ github.run_id }} | ||
- name: Install Java | ||
uses: actions/setup-java@v3.8.0 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8' | ||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
cache-read-only: false | ||
- name: run PythonDocsPrecommit script | ||
run: ./gradlew :pythonDocsPreCommit |
108 changes: 108 additions & 0 deletions
108
.github/workflows/beam_PreCommit_Python_Integration.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: PreCommit Python Integration | ||
|
||
on: | ||
pull_request_target: | ||
branches: [ "master", "release-*" ] | ||
paths: ["model/**", "sdks/python/**", "release/**"] | ||
issue_comment: | ||
types: [created] | ||
push: | ||
tags: ['v*'] | ||
branches: ['master', 'release-*'] | ||
paths: ["model/**", "sdks/python/**", "release/**", ".github/workflows/beam_PreCommit_Python_Integration.yml"] | ||
schedule: | ||
- cron: '* */6 * * *' | ||
|
||
#Setting explicit permissions for the action to avoid the default permissions which are `write-all` in case of pull_request_target event | ||
permissions: | ||
actions: write | ||
pull-requests: read | ||
checks: read | ||
contents: read | ||
deployments: read | ||
id-token: none | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
repository-projects: read | ||
security-events: read | ||
statuses: read | ||
|
||
# This allows a subsequently queued workflow run to interrupt previous runs | ||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
beam_PreCommit_Python_Integration: | ||
name: beam_PreCommit_Python_Integration | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python_version: ['3.8', '3.11'] | ||
if: | | ||
github.event_name == 'push' || | ||
github.event_name == 'pull_request_target' || | ||
startsWith(github.event.comment.body, 'Run Python_Integration PreCommit') || | ||
github.event_name == 'schedule' | ||
runs-on: [self-hosted, ubuntu-20.04, main] | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Set comment body with matrix | ||
id: set_comment_body | ||
run: | | ||
echo "comment_body=Run Python_Integration PreCommit (${{ matrix.python_version }})" >> $GITHUB_OUTPUT | ||
- name: Rerun on comment | ||
if: github.event.comment.body == steps.set_comment_body.outputs.comment_body | ||
uses: ./.github/actions/rerun-job-action | ||
with: | ||
pull_request_url: ${{ github.event.issue.pull_request.url }} | ||
github_repository: ${{ github.repository }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_job: "${{ github.job }} (${{ matrix.python_version }})" | ||
github_current_run_id: ${{ github.run_id }} | ||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python_version }} | ||
- name: Install Java | ||
uses: actions/setup-java@v3.8.0 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8' | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
cache-read-only: false | ||
- name: run Python Integration PreCommit batch script | ||
run: | | ||
PY_VER=${{ matrix.python_version }} | ||
./gradlew :sdks:python:test-suites:dataflow:py${PY_VER//.}:preCommitIT_batch -PuseWheelDistribution -PpythonVersion=${PY_VER} | ||
- name: run Python Integration PreCommit streaming script | ||
run: | | ||
PY_VER=${{ matrix.python_version }} | ||
./gradlew :sdks:python:test-suites:dataflow:py${PY_VER//.}:preCommitIT_streaming -PuseWheelDistribution -PpythonVersion=${PY_VER} | ||
- name: Archive code coverage results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: python-code-coverage-report | ||
path: "**/pytest*.xml" |
Oops, something went wrong.