-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add flags to build multiarch Python SDK containers and test #27723
Merged
Merged
Changes from 13 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
00b7148
[New Python Arm Tests] Create yml file, change README file.
celeste-zeng 661c866
Add new script, adjust dependent test files, rename yml file.
celeste-zeng 4fc4f1a
Add steps to build multi-arch Python containers.
celeste-zeng b838a2f
Adjust error message.
celeste-zeng 91a368b
Regenerate base image requirement, add test suite label.
celeste-zeng c3f932e
Merge branch 'apache:master' into gh-py-arm
celeste-zeng f7e810f
Merge branch 'master' into gh-py-arm
celeste-zeng 0b43e66
Add Gcloud authentication, make minor changes to maintain consistency…
celeste-zeng d605499
Reuse old script, fix formatting, remove unnecessary changes.
celeste-zeng b0ab6ab
fix formatting.
celeste-zeng 2d2121b
Made changes based on comments.
celeste-zeng d8cf065
Merge branch 'master' into gh-py-arm
celeste-zeng a29f105
Remove unused script, set current time as build tag.
celeste-zeng e945ea1
Fix formatting errors.
celeste-zeng 17830a1
Formatting.
celeste-zeng 2d7ca2f
Revert some changes.
celeste-zeng b00ac72
Add comment about pushed containers.
celeste-zeng 756f8c3
Update comments on ARM test suites.
celeste-zeng 264d1d0
Made changes based on comments.
celeste-zeng baf47fe
Make ARCH a variable set by gradle not GH.
celeste-zeng e7c2dd1
Fix typo
celeste-zeng fa423f0
Added more detailed comments for script arguments.
celeste-zeng File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
128 changes: 128 additions & 0 deletions
128
.github/workflows/beam_Python_ValidatesContainer_Dataflow_ARM.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,128 @@ | ||
# 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 ValidatesContainer Dataflow ARM | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
push: | ||
tags: ['v*'] | ||
branches: ['master', 'release-*'] | ||
paths: ["sdks/python/**",".github/workflows/beam_Python_ValidatesContainer_Dataflow_ARM.yml"] | ||
schedule: | ||
- cron: '0 */6 * * *' | ||
workflow_dispatch: | ||
|
||
#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_Python_ValidatesContainer_Dataflow_ARM: | ||
name: beam_Python_ValidatesContainer_Dataflow_ARM | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python_version: ['3.8','3.9','3.10','3.11'] | ||
if: | | ||
github.event_name == 'push' || | ||
startsWith(github.event.comment.body, 'Run Python ValidatesContainer Dataflow ARM') || | ||
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 ValidatesContainer Dataflow ARM (${{ 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: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
cache-read-only: false | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- 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 }} | ||
export_default_credentials: true | ||
- name: GCloud Docker credential helper | ||
run: | | ||
gcloud auth configure-docker us-central1-docker.pkg.dev | ||
- name: Set PY_VER_CLEAN | ||
id: set_py_ver_clean | ||
run: | | ||
PY_VER=${{ matrix.python_version }} | ||
PY_VER_CLEAN=${PY_VER//.} | ||
echo "py_ver_clean=$PY_VER_CLEAN" >> $GITHUB_OUTPUT | ||
- name: Set current time as docker container image tag | ||
id: set_tag | ||
run: | | ||
echo "buildtime=$(date +'%Y%m%d-%H%M%S%N')" >> $GITHUB_OUTPUT | ||
celeste-zeng marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- name: run Python validatesContainerARM script | ||
id: run_script | ||
run: | | ||
gradle-command: :sdks:python:test-suites:dataflow:py${{steps.set_py_ver_clean.outputs.py_ver_clean}}:validatesContainerARM | ||
arguments: | | ||
-PpythonVersion=${{ matrix.python_version }} \ | ||
-Pcontainer-architecture-list=arm64,amd64 \ | ||
-Pdocker-repository=us.gcr.io/apache-beam-testing/github-actions \ | ||
-Pdocker-tag=${{ steps.set_tag.outputs.buildtime }} \ | ||
-Ppush-containers | ||
env: | ||
ARM_TAG: ${{ steps.set_tag.outputs.buildtime }} | ||
ARCH: ARM | ||
USER: github-actions | ||
- name: Archive code coverage results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: python-code-coverage-report | ||
path: "**/pytest*.xml" |
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 |
---|---|---|
|
@@ -104,4 +104,13 @@ EOT | |
# Remove pkg_resources to guard against | ||
# https://stackoverflow.com/questions/39577984/what-is-pkg-resources-0-0-0-in-output-of-pip-freeze-command | ||
pip freeze | grep -v pkg_resources >> "$REQUIREMENTS_FILE" | ||
|
||
if grep -q "tensorflow==" "$REQUIREMENTS_FILE"; then | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i recommend to move changes to this file into a separate PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. #27789 |
||
# Get the version of tensorflow from the .txt file. | ||
TF_VERSION=$(grep -Po "tensorflow==\K[^;]+" "$REQUIREMENTS_FILE") | ||
TF_ENTRY="tensorflow==${TF_VERSION}" | ||
TF_AARCH64_ENTRY="tensorflow-cpu-aws==${TF_VERSION};platform_machine==\"aarch64\"" | ||
sed -i "s/${TF_ENTRY}/${TF_ENTRY}\n${TF_AARCH64_ENTRY}/g" $REQUIREMENTS_FILE | ||
fi | ||
|
||
rm -rf "$ENV_PATH" |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: debugging leftover?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think all python GH tests now has this step, added by #27712