kou commented on PR #33805:
URL: https://github.com/apache/arrow/pull/33805#issuecomment-1407161424

   Does this work?
   
   ```diff
   diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
   index 9e044d205b..e95c31e647 100755
   --- a/dev/release/verify-release-candidate.sh
   +++ b/dev/release/verify-release-candidate.sh
   @@ -1026,7 +1026,7 @@ test_linux_wheels() {
      fi
    
      local python_versions="${TEST_PYTHON_VERSIONS:-3.7m 3.8 3.9 3.10 3.11}"
   -  local platform_tags="manylinux_2_17_${arch}.manylinux2014_${arch}"
   +  local 
platform_tags="${TEST_WHEEL_PLATFORM_TAGS:-manylinux_2_17_${arch}.manylinux2014_${arch}
 manylinux_2_28_${arch}}"
    
      for python in ${python_versions}; do
        local pyver=${python/m}
   diff --git a/dev/tasks/python-wheels/github.linux.amd64.yml 
b/dev/tasks/python-wheels/github.linux.amd64.yml
   index 9266517072..0b0002785f 100644
   --- a/dev/tasks/python-wheels/github.linux.amd64.yml
   +++ b/dev/tasks/python-wheels/github.linux.amd64.yml
   @@ -116,6 +116,7 @@ jobs:
                -e TEST_DEFAULT=0 \
                -e TEST_PYARROW_VERSION={{ arrow.no_rc_version }} \
                -e TEST_PYTHON_VERSIONS={{ python_version }} \
   +            -e TEST_WHEEL_PLATFORM_TAGS={{ wheel_platform_tag }} \
                -e TEST_WHEELS=1 \
                ubuntu-verify-rc
    
   diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
   index a9057777f3..c4a708a240 100644
   --- a/dev/tasks/tasks.yml
   +++ b/dev/tasks/tasks.yml
   @@ -452,24 +452,19 @@ tasks:
    
    {############################## Wheel Linux 
##################################}
    
   -{% for ci, arch, arch_alias, x_y, manylinux_version, manylinux in 
[("github", "amd64", "x86_64", "2_17", "2014", "manylinux2014"),
   -                                                                   
("github", "amd64", "x86_64", "2_28", "2-28", "manylinux_2_28"),
   -                                                                   
("travis", "arm64", "aarch64", "2_17", "2014", "manylinux2014"),
   -                                                                   
("travis", "arm64", "aarch64", "2_28", "2-28", "manylinux_2_28")] %}
   +{% for ci, arch, manylinux_version, platform_tag in [("github", "amd64", 
"2014", "manylinux_2_17_x86_64.manylinux2014_x86_64"),
   +                                                     ("github", "amd64", 
"2-28", "manylinux_2_28_x86_64"),
   +                                                     ("travis", "arm64", 
"2014", "manylinux_2_17_aarch64.manylinux2014_aarch64"),
   +                                                     ("travis", "arm64", 
"2-28", "manylinux_2_28_aarch64")] %}
      wheel-{{ manylinux }}-{{ python_tag }}-{{ arch }}:
        ci: "{{ ci }}"
        template: python-wheels/{{ ci }}.linux.{{ arch }}.yml
        params:
   -      python_version: "{{ python_version }}"
          manylinux_version: "{{ manylinux_version }}"
   +      python_version: "{{ python_version }}"
   +      wheel_platform_tag: "{{ platform_tag }}"
        artifacts:
   -      {% if manylinux == 'manylinux2014' %}
   -      {# auditwheel produces two labels, manylinux_x_y and manylinux2014 #}
   -      - pyarrow-{no_rc_version}-{{ python_tag }}-{{ abi_tag }}-manylinux_{{ 
x_y }}_{{ arch_alias }}.{{ manylinux }}_{{ arch_alias }}.whl
   -      {% else %}
   -      {# auditwheel produces a single manylinux_x_y label #}
   -      - pyarrow-{no_rc_version}-{{ python_tag }}-{{ abi_tag }}-{{ manylinux 
}}_{{ arch_alias }}.whl
   -      {% endif %}
   +      - pyarrow-{no_rc_version}-{{ python_tag }}-{{ abi_tag }}-${{ 
platform_tag }}.whl
    {% endfor %}
    
    {############################## Wheel OSX 
####################################}
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to