Skip to content

Support for windows-arm64 #1

Support for windows-arm64

Support for windows-arm64 #1

Workflow file for this run

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"