This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 3a86ec17a ci: run verification on M1 runners (#1734)
3a86ec17a is described below
commit 3a86ec17af16e4dfae49049f2e4adc6ab987e216
Author: David Li <[email protected]>
AuthorDate: Fri Apr 19 11:54:05 2024 +0900
ci: run verification on M1 runners (#1734)
Fixes #1681.
---
.github/workflows/nightly-verify.yml | 2 +-
.github/workflows/verify.yml | 11 +++++++++--
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/nightly-verify.yml
b/.github/workflows/nightly-verify.yml
index 14263b883..c90e8111a 100644
--- a/.github/workflows/nightly-verify.yml
+++ b/.github/workflows/nightly-verify.yml
@@ -109,7 +109,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: ["macos-latest", "ubuntu-latest", "windows-latest"]
+ os: ["macos-latest", "macos-14", "ubuntu-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
with:
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 7ca61e4dd..d58083740 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -48,12 +48,19 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: ["macos-latest", "ubuntu-latest"]
+ os: ["macos-latest", "macos-14", "ubuntu-latest"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
+ # No Docker on M1
+ - name: Skip Binary Verifiction
+ if: matrix.os == 'macos-14'
+ shell: bash
+ run: |
+ echo "TEST_APT=0" | tee -a $GITHUB_ENV
+ echo "TEST_YUM=0" | tee -a $GITHUB_ENV
- name: Verify
shell: bash
env:
@@ -71,7 +78,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- os: ["macos-latest", "ubuntu-latest", "windows-latest"]
+ os: ["macos-latest", "macos-14", "ubuntu-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
with: