Skip to content

Commit

Permalink
GH-107: Add test CI for arm Runners (#123)
Browse files Browse the repository at this point in the history
Fix #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
  • Loading branch information
raulcd authored Sep 13, 2024
1 parent 35126b8 commit eaf7703
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit eaf7703

Please sign in to comment.