This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-go.git
The following commit(s) were added to refs/heads/main by this push:
new eaf7703 GH-107: Add test CI for arm Runners (#123)
eaf7703 is described below
commit eaf7703242fcd12e2e1c744aa89766c5d7d481ef
Author: Raúl Cumplido <[email protected]>
AuthorDate: Fri Sep 13 14:19:39 2024 +0200
GH-107: Add test CI for arm Runners (#123)
Fix https://github.com/apache/arrow-go/issues/107
We have some jobs that run on ARM self-hosted runners, we should also
add those:
https://github.com/apache/arrow/blob/main/.github/workflows/go.yml#L80-L91
---
.github/workflows/test.yml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 4c0c737..99acc9b 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -50,6 +50,18 @@ jobs:
"arch": "amd64",
"go": "1.23",
"runs-on": "ubuntu-latest"
+ },
+ {
+ "arch-label": "ARM64",
+ "arch": "arm64v8",
+ "go": "1.22",
+ "runs-on": ["self-hosted", "arm", "linux"]
+ },
+ {
+ "arch-label": "ARM64",
+ "arch": "arm64v8",
+ "go": "1.23",
+ "runs-on": ["self-hosted", "arm", "linux"]
}
JSON
echo "]" >> "$GITHUB_OUTPUT"