Support for windows-arm64 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-test: | |
runs-on: windows-2019 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- run: cmd /c "build.cmd cleanbuild Debug" | |
# next three commands are equivalent to "build.cmd" | |
- run: cmd /c "build.cmd cleanbuild Release" | |
- run: cmd /c "build.cmd copy_native" | |
- run: cmd /c "build.cmd maven" | |
# run only tests now that package was built (avoid download noise) | |
- run: cmd /c "mvn verify" |