This is an automated email from the ASF dual-hosted git repository. yhu pushed a commit to branch nousewheel in repository https://gitbox.apache.org/repos/asf/beam.git
commit 93ac5e9876722f24ea0e75cd9ef10834f8413bb8 Author: Yi Hu <[email protected]> AuthorDate: Fri Mar 22 15:01:12 2024 -0400 Remove -PuseWheelDistribution for direct runner precommits The generated wheel is currently only used in Dataflow test-suite, and unused in these workflows --- .github/workflows/beam_PreCommit_Python.yml | 3 +-- .github/workflows/beam_PreCommit_Python_Coverage.yml | 2 -- .github/workflows/beam_PreCommit_Python_Dataframes.yml | 3 +-- .github/workflows/beam_PreCommit_Python_Examples.yml | 3 +-- .github/workflows/beam_PreCommit_Python_Runners.yml | 3 +-- .github/workflows/beam_PreCommit_Python_Transforms.yml | 3 +-- 6 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/beam_PreCommit_Python.yml b/.github/workflows/beam_PreCommit_Python.yml index cb7660e0424..83c01afec09 100644 --- a/.github/workflows/beam_PreCommit_Python.yml +++ b/.github/workflows/beam_PreCommit_Python.yml @@ -96,8 +96,7 @@ jobs: gradle-command: :sdks:python:test-suites:tox:py${{steps.set_py_ver_clean.outputs.py_ver_clean}}:preCommitPy${{steps.set_py_ver_clean.outputs.py_ver_clean}} arguments: | -Pposargs="--ignore=apache_beam/dataframe/ --ignore=apache_beam/examples/ --ignore=apache_beam/runners/ --ignore=apache_beam/transforms/" \ - -PpythonVersion=${{ matrix.python_version }} \ - -PuseWheelDistribution + -PpythonVersion=${{ matrix.python_version }} - name: Archive Python Test Results uses: actions/upload-artifact@v4 if: failure() diff --git a/.github/workflows/beam_PreCommit_Python_Coverage.yml b/.github/workflows/beam_PreCommit_Python_Coverage.yml index 35aaa426c97..a6995f67948 100644 --- a/.github/workflows/beam_PreCommit_Python_Coverage.yml +++ b/.github/workflows/beam_PreCommit_Python_Coverage.yml @@ -88,8 +88,6 @@ jobs: uses: ./.github/actions/gradle-command-self-hosted-action with: gradle-command: :sdks:python:test-suites:tox:py38:preCommitPyCoverage - arguments: | - -PuseWheelDistribution - uses: codecov/codecov-action@v4 with: flags: python diff --git a/.github/workflows/beam_PreCommit_Python_Dataframes.yml b/.github/workflows/beam_PreCommit_Python_Dataframes.yml index 2dd6f394c9c..9cf90007c0b 100644 --- a/.github/workflows/beam_PreCommit_Python_Dataframes.yml +++ b/.github/workflows/beam_PreCommit_Python_Dataframes.yml @@ -96,8 +96,7 @@ jobs: gradle-command: :sdks:python:test-suites:tox:py${{steps.set_py_ver_clean.outputs.py_ver_clean}}:preCommitPy${{steps.set_py_ver_clean.outputs.py_ver_clean}} arguments: | -Pposargs=apache_beam/dataframe/ \ - -PpythonVersion=${{ matrix.python_version }} \ - -PuseWheelDistribution + -PpythonVersion=${{ matrix.python_version }} - name: Archive Python Test Results uses: actions/upload-artifact@v4 if: failure() diff --git a/.github/workflows/beam_PreCommit_Python_Examples.yml b/.github/workflows/beam_PreCommit_Python_Examples.yml index cb0479c218f..d695322a70c 100644 --- a/.github/workflows/beam_PreCommit_Python_Examples.yml +++ b/.github/workflows/beam_PreCommit_Python_Examples.yml @@ -96,8 +96,7 @@ jobs: gradle-command: :sdks:python:test-suites:tox:py${{steps.set_py_ver_clean.outputs.py_ver_clean}}:preCommitPy${{steps.set_py_ver_clean.outputs.py_ver_clean}} arguments: | -Pposargs=apache_beam/examples/ \ - -PpythonVersion=${{ matrix.python_version }} \ - -PuseWheelDistribution + -PpythonVersion=${{ matrix.python_version }} - name: Archive Python Test Results uses: actions/upload-artifact@v4 if: failure() diff --git a/.github/workflows/beam_PreCommit_Python_Runners.yml b/.github/workflows/beam_PreCommit_Python_Runners.yml index 9d80f9cf553..0d6609e4d83 100644 --- a/.github/workflows/beam_PreCommit_Python_Runners.yml +++ b/.github/workflows/beam_PreCommit_Python_Runners.yml @@ -96,8 +96,7 @@ jobs: gradle-command: :sdks:python:test-suites:tox:py${{steps.set_py_ver_clean.outputs.py_ver_clean}}:preCommitPy${{steps.set_py_ver_clean.outputs.py_ver_clean}} arguments: | -Pposargs=apache_beam/runners/ \ - -PpythonVersion=${{ matrix.python_version }} \ - -PuseWheelDistribution + -PpythonVersion=${{ matrix.python_version }} - name: Archive Python Test Results uses: actions/upload-artifact@v4 if: failure() diff --git a/.github/workflows/beam_PreCommit_Python_Transforms.yml b/.github/workflows/beam_PreCommit_Python_Transforms.yml index f4895ec27c5..f17c55eee79 100644 --- a/.github/workflows/beam_PreCommit_Python_Transforms.yml +++ b/.github/workflows/beam_PreCommit_Python_Transforms.yml @@ -96,8 +96,7 @@ jobs: gradle-command: :sdks:python:test-suites:tox:py${{steps.set_py_ver_clean.outputs.py_ver_clean}}:preCommitPy${{steps.set_py_ver_clean.outputs.py_ver_clean}} arguments: | -Pposargs=apache_beam/transforms/ \ - -PpythonVersion=${{ matrix.python_version }} \ - -PuseWheelDistribution + -PpythonVersion=${{ matrix.python_version }} - name: Archive Python Test Results uses: actions/upload-artifact@v4 if: failure()
