Build macOS native lib #5
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
name: macOS native lib | |
on: [push] | |
jobs: | |
macosNativeLib: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Build native lib | |
run: ./gradlew :native:compress:buildJNI | |
- name: List build files | |
run: ls -lR native/compress/build/ | |
- name: Upload macOS native lib asset | |
uses: actions/upload-artifact@v4 | |
with: | |
name: libcompress_jni.dylib | |
path: 'native/compress/build/native/darwin-aarch64/libcompress_jni.dylib' |