You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/04/28 06:08:38 UTC

[arrow] branch master updated: MINOR: [Release] Use github hosted runners to verify amd64 macOS 11 wheels

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 1cd8a850c9 MINOR: [Release] Use github hosted runners to verify amd64 macOS 11 wheels
1cd8a850c9 is described below

commit 1cd8a850c9fca761f7a2c71d65c3828e43c49f0e
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Thu Apr 28 15:08:12 2022 +0900

    MINOR: [Release] Use github hosted runners to verify amd64 macOS 11 wheels
    
    Tested here https://github.com/apache/arrow/pull/13013#issuecomment-1111501323
    
    Closes #13020 from kszucs/wheel-macos-11-verification
    
    Authored-by: Krisztián Szűcs <sz...@gmail.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/tasks/tasks.yml | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
index e10cd58cf3..99b9716f8d 100644
--- a/dev/tasks/tasks.yml
+++ b/dev/tasks/tasks.yml
@@ -988,35 +988,33 @@ tasks:
       github_runner: "self-hosted"
   {% endfor %}
 
-  verify-rc-binaries-wheels-macos-10.15-amd64:
+  {% for macos_version in ["10.15", "11"] %}
+  verify-rc-binaries-wheels-macos-{{ macos_version }}-amd64:
     ci: github
     template: verify-rc/github.macos.amd64.yml
     params:
-      github_runner: "macos-10.15"
+      github_runner: "macos-{{ macos_version }}"
       target: "wheels"
 
-  verify-rc-binaries-wheels-macos-10.15-amd64-conda:
+  verify-rc-binaries-wheels-macos-{{ macos_version }}-amd64-conda:
     ci: github
     template: verify-rc/github.macos.amd64.yml
     params:
       env:
         USE_CONDA: 1
-      github_runner: "macos-10.15"
+      github_runner: "macos-{{ macos_version }}"
       target: "wheels"
+  {% endfor %}
 
-  # The github hosted macos-11 runners are in preview only, but should be switched once they are generally available:
-  #   https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
-  {% for arch, emulation in [("amd64", "x86_64"), ("arm64", "arm64")] %}
-  verify-rc-binaries-wheels-macos-11-{{ arch }}:
+  verify-rc-binaries-wheels-macos-11-arm64:
     ci: github
     template: verify-rc/github.macos.arm64.yml
     params:
       env:
         PYTEST_ADDOPTS: "-k 'not test_cancellation'"
       github_runner: "self-hosted"
-      arch_emulation: {{ emulation }}
+      arch_emulation: arm64
       target: "wheels"
-  {% endfor %}
 
   ######################## Windows verification ##############################