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

paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 151a2a19 chore(ci): Use Github linux arm64 runners instead of the 
self-hosted ones (#708)
151a2a19 is described below

commit 151a2a19455e7550cc56afe5f274837227d0d9f2
Author: Jacob Wujciak-Jens <[email protected]>
AuthorDate: Sun Jan 26 04:57:06 2025 +0100

    chore(ci): Use Github linux arm64 runners instead of the self-hosted ones 
(#708)
    
    The linux arm64 runners are now GA for open source repos:
    
https://github.blog/changelog/2025-01-16-linux-arm64-hosted-runners-now-available-for-free-in-public-repositories-public-preview/
---
 .github/workflows/docker-build.yaml  | 6 +++---
 .github/workflows/python-wheels.yaml | 5 ++++-
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/docker-build.yaml 
b/.github/workflows/docker-build.yaml
index fb60aa91..380f1f2a 100644
--- a/.github/workflows/docker-build.yaml
+++ b/.github/workflows/docker-build.yaml
@@ -47,9 +47,9 @@ jobs:
           - { runs_on: "ubuntu-latest", platform: "archlinux", arch: "amd64", 
service: "verify" }
           - { runs_on: "ubuntu-latest", platform: "alpine", arch: "amd64", 
service: "verify" }
 
-          - { runs_on: ["self-hosted", "arm"], platform: "ubuntu", arch: 
"arm64", service: "verify" }
-          - { runs_on: ["self-hosted", "arm"], platform: "fedora", arch: 
"arm64", service: "verify" }
-          - { runs_on: ["self-hosted", "arm"], platform: "alpine", arch: 
"arm64", service: "verify" }
+          - { runs_on: "ubuntu-24.04-arm", platform: "ubuntu", arch: "arm64", 
service: "verify" }
+          - { runs_on: "ubuntu-24.04-arm", platform: "fedora", arch: "arm64", 
service: "verify" }
+          - { runs_on: "ubuntu-24.04-arm", platform: "alpine", arch: "arm64", 
service: "verify" }
 
           - { runs_on: "ubuntu-latest", platform: "alpine", arch: "s390x", 
service: "verify" }
 
diff --git a/.github/workflows/python-wheels.yaml 
b/.github/workflows/python-wheels.yaml
index 4f45f0de..4435c9f6 100644
--- a/.github/workflows/python-wheels.yaml
+++ b/.github/workflows/python-wheels.yaml
@@ -53,6 +53,9 @@ jobs:
         fetch-tags: true
 
     - uses: actions/setup-python@v5
+      with:
+        python-version: '3.9'
+
     - name: Check that cmake is installed
       run: |
         cmake --version
@@ -101,7 +104,7 @@ jobs:
           - {os: "windows-2019", label: "windows-amd64", platform: "auto", 
arch: "AMD64"}
           - {os: "macOS-13", label: "macOS", platform: "auto", arch: "auto"}
           - {os: "macOS-14", label: "macOS-arm64", platform: "auto", arch: 
"auto"}
-          - {os: ["self-hosted", "arm"], label: "linux-arm64", platform: 
"auto", arch: "auto"}
+          - {os: "ubuntu-24.04-arm", label: "linux-arm64", platform: "auto", 
arch: "auto"}
 
     steps:
       - uses: actions/checkout@v4

Reply via email to