This is an automated email from the ASF dual-hosted git repository. yhu pushed a commit to branch build-wheel-test in repository https://gitbox.apache.org/repos/asf/beam.git
commit 62ce6a907f72a2b22d7c7799c22bb394dd504b12 Author: Yi Hu <[email protected]> AuthorDate: Thu Mar 12 10:56:56 2026 -0400 testing --- .github/workflows/build_wheels.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 069a435fa74..213ecb0c12e 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -45,7 +45,7 @@ jobs: check_env_variables: timeout-minutes: 5 name: "Check environment variables" - runs-on: [self-hosted, ubuntu-20.04, main] + runs-on: 'ubuntu-20.04' env: EVENT_NAME: ${{ github.event_name }} # Keep in sync with py_version matrix value below - if changed, change that as well. @@ -81,7 +81,7 @@ jobs: echo "py-versions-full=$PY_VERSIONS_FULL" >> $GITHUB_OUTPUT build_source: - runs-on: [self-hosted, ubuntu-20.04, main] + runs-on: 'ubuntu-20.04' name: Build python source distribution outputs: is_rc: ${{ steps.is_rc.outputs.is_rc }} @@ -198,7 +198,7 @@ jobs: needs: - prepare_gcs - check_env_variables - runs-on: [self-hosted, ubuntu-20.04, main] + runs-on: 'ubuntu-20.04' if: needs.check_env_variables.outputs.gcp-variables-set == 'true' steps: - name: Download compressed sources from artifacts @@ -222,7 +222,7 @@ jobs: fail-fast: false matrix: os_python: [ - {"os": "ubuntu-20.04", "runner": [self-hosted, ubuntu-20.04, main], "python": "${{ needs.check_env_variables.outputs.py-versions-full }}", arch: "auto" }, + {"os": "ubuntu-20.04", "runner": 'ubuntu-20.04', "python": "${{ needs.check_env_variables.outputs.py-versions-full }}", arch: "auto" }, {"os": "macos-15", "runner": "macos-15", "python": "${{ needs.check_env_variables.outputs.py-versions-test }}", arch: "auto" }, {"os": "windows-latest", "runner": "windows-latest", "python": "${{ needs.check_env_variables.outputs.py-versions-test }}", arch: "auto" }, {"os": "ubuntu-20.04", "runner": "ubuntu-22.04", "python": "${{ needs.check_env_variables.outputs.py-versions-test }}", arch: "aarch64" } @@ -231,7 +231,7 @@ jobs: py_version: ["cp310-", "cp311-", "cp312-", "cp313-"] # The following exclude/include skips intermediate Python versions on GitHub hosted runners for PR run is_pr: - - ${{ github.event_name == 'pull_request' }} + - ${{ github.event_name != 'pull_request' }} exclude: - is_pr: true include:
