kou commented on PR #40269:
URL: https://github.com/apache/arrow/pull/40269#issuecomment-1969116599
> ARM64 Ubuntu 20.04 C++
Let's use Ubuntu 22.04:
```diff
diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml
index e9409f1cd6..b5461e2f56 100644
--- a/.github/workflows/cpp.yml
+++ b/.github/workflows/cpp.yml
@@ -94,12 +94,12 @@ jobs:
cat <<JSON >> "$GITHUB_OUTPUT"
{
"arch": "arm64v8",
- "clang-tools": "10",
+ "clang-tools": "14",
"image": "ubuntu-cpp",
- "llvm": "10",
+ "llvm": "14",
"runs-on": ["self-hosted", "arm", "linux"],
- "title": "ARM64 Ubuntu 20.04 C++",
- "ubuntu": "20.04"
+ "title": "ARM64 Ubuntu 22.04 C++",
+ "ubuntu": "22.04"
}
JSON
fi
```
> ARM64 Debian 11 Go 1.19/1.20
Let's use Debian 12:
```diff
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index bbffab6704..5d6918aa60 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -90,7 +90,7 @@ jobs:
echo "JSON" >> "$GITHUB_OUTPUT"
docker:
- name: ${{ matrix.arch-label }} Debian 11 Go ${{ matrix.go }}
+ name: ${{ matrix.arch-label }} Debian 12 Go ${{ matrix.go }}
needs: docker-targets
runs-on: ${{ matrix.runs-on }}
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
@@ -101,6 +101,7 @@ jobs:
include: ${{ fromJson(needs.docker-targets.outputs.targets) }}
env:
ARCH: ${{ matrix.arch }}
+ DEBIAN: "12"
GO: ${{ matrix.go }}
steps:
- name: Checkout Arrow
``
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]