You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2022/06/09 12:31:09 UTC

[arrow] branch master updated: ARROW-16793: [CI] Update tags for M1 self-hosted runner jobs to be more specific (#13350)

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

apitrou 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 ad53b26895 ARROW-16793: [CI] Update tags for M1 self-hosted runner jobs to be more specific (#13350)
ad53b26895 is described below

commit ad53b26895b5bcc24ca9aff3d646f63ec4a1fe3f
Author: Raúl Cumplido <ra...@gmail.com>
AuthorDate: Thu Jun 9 14:30:58 2022 +0200

    ARROW-16793: [CI] Update tags for M1 self-hosted runner jobs to be more specific (#13350)
    
    Authored-by: Raúl Cumplido <ra...@gmail.com>
    Signed-off-by: Antoine Pitrou <an...@python.org>
---
 dev/tasks/python-wheels/github.osx.arm64.yml | 2 +-
 dev/tasks/tasks.yml                          | 4 ++--
 dev/tasks/verify-rc/github.macos.arm64.yml   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev/tasks/python-wheels/github.osx.arm64.yml b/dev/tasks/python-wheels/github.osx.arm64.yml
index 79ec34062f..101d8c6ee8 100644
--- a/dev/tasks/python-wheels/github.osx.arm64.yml
+++ b/dev/tasks/python-wheels/github.osx.arm64.yml
@@ -41,7 +41,7 @@ env:
 jobs:
   build:
     name: Build wheel for OS X
-    runs-on: self-hosted
+    runs-on: ["self-hosted", "macOS", "arm64"]
     steps:
       - name: Cleanup
         run: rm -rf arrow vcpkg build crossbow-env build-*-env test-*-env
diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
index 3108c0ad1e..95d404932c 100644
--- a/dev/tasks/tasks.yml
+++ b/dev/tasks/tasks.yml
@@ -1040,7 +1040,7 @@ tasks:
         TEST_INTEGRATION_JAVA: 0
         PYTEST_ADDOPTS: "-k 'not test_cancellation'"
       target: {{ target }}
-      github_runner: "self-hosted"
+      github_runner: ["self-hosted", "macOS", "arm64"]
   {% endfor %}
 
   {% for macos_version in ["10.15", "11"] %}
@@ -1067,7 +1067,7 @@ tasks:
     params:
       env:
         PYTEST_ADDOPTS: "-k 'not test_cancellation'"
-      github_runner: "self-hosted"
+      github_runner: ["self-hosted", "macOS", "arm64"]
       arch_emulation: arm64
       target: "wheels"
 
diff --git a/dev/tasks/verify-rc/github.macos.arm64.yml b/dev/tasks/verify-rc/github.macos.arm64.yml
index 456103965c..10f684e6ac 100644
--- a/dev/tasks/verify-rc/github.macos.arm64.yml
+++ b/dev/tasks/verify-rc/github.macos.arm64.yml
@@ -22,7 +22,7 @@
 jobs:
   verify:
     name: "Verify release candidate on macOS"
-    runs-on: {{ github_runner|default("self-hosted") }}
+    runs-on: {{ github_runner|default(["self-hosted", "macOS", "arm64"]) }}
     {% if env is defined %}
     env:
     {% for key, value in env.items() %}