raulcd commented on code in PR #432:
URL: https://github.com/apache/arrow-java/pull/432#discussion_r1861820298
##########
.github/workflows/test.yml:
##########
@@ -72,3 +72,66 @@ jobs:
-e CI=true \
-e "DEVELOCITY_ACCESS_KEY=$DEVELOCITY_ACCESS_KEY" \
${{ matrix.image }}
+
+ macos:
+ name: AMD64 macOS ${{ matrix.macos }} Java JDK ${{ matrix.jdk }}
Review Comment:
This will be `ARM64` for `macos-latest`, can we add the architecture to the
matrix?
```suggestion
name: ${{ matrix.architecture }} macOS ${{ matrix.macos-version }} Java
JDK ${{ matrix.jdk }}
```
with the following should work.
```
matrix:
- architecture: AMD64
jdk: 11
macos-version: "13"
- architecture: ARM64
jdk: 11
macos-version: "latest"
```
--
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]