Build Windows Java Lib #6
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
name: Build Windows Java Lib | |
on: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
isNightly: | |
type: boolean | |
required: true | |
default: false | |
jobs: | |
build-windows-java: | |
runs-on: [self-hosted, windows-2019] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update nightly version | |
if: ${{ inputs.isNightly == true }} | |
run: | | |
pip3 install packaging | |
python3 update-nightly-build-version.py | |
working-directory: ./scripts | |
- name: Build Java lib for Windows | |
shell: cmd | |
run: | | |
call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat" | |
make java NUM_THREADS=40 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: java-lib-win-x86_64 | |
path: tools/java_api/build/libkuzu_java_native* |