kou commented on code in PR #13918:
URL: https://github.com/apache/arrow/pull/13918#discussion_r950196101
##########
.github/workflows/java.yml:
##########
@@ -125,3 +125,29 @@ jobs:
- name: Test
shell: bash
run: ci/scripts/java_test.sh $(pwd) $(pwd)/build
+
+ windows:
+ name: Windows Server 2022 Java JDK ${{ matrix.jdk }}
Review Comment:
Could you put architecture information like other jobs?
```suggestion
name: AMD64 Windows Server 2022 Java JDK ${{ matrix.jdk }}
```
##########
.github/workflows/java.yml:
##########
@@ -125,3 +125,29 @@ jobs:
- name: Test
shell: bash
run: ci/scripts/java_test.sh $(pwd) $(pwd)/build
+
+ windows:
+ name: Windows Server 2022 Java JDK ${{ matrix.jdk }}
+ runs-on: windows-latest
+ if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
+ timeout-minutes: 30
+ strategy:
+ fail-fast: false
+ matrix:
+ jdk: [8]
+ steps:
+ - name: Set up Java
+ uses: actions/setup-java@v1
Review Comment:
Can we use `@v3` here?
```suggestion
uses: actions/setup-java@v3
```
--
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]