chore: add new java release/test workflow #39
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: Java Cross-platform Build and Test | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build for ${{ matrix.target }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-gnu | |
os: ubuntu-latest | |
- target: aarch64-unknown-linux-gnu | |
os: ubuntu-latest | |
- target: aarch64-apple-darwin | |
os: ubuntu-latest | |
- target: x86_64-apple-darwin | |
os: ubuntu-latest | |
- target: x86_64-pc-windows-gnu | |
os: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
override: true | |
- name: Install cargo-binstall | |
uses: taiki-e/install-action@cargo-binstall | |
- name: Install Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: 0.10.1 | |
- name: Install cargo-zigbuild | |
run: cargo binstall --no-confirm cargo-zigbuild | |
- name: Run compile script | |
run: | | |
chmod +x .github/scripts/compile_all_targets_java_new.sh | |
.github/scripts/compile_all_targets_java_new.sh ${{ matrix.target }} | |
shell: bash | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.target }}-java-code | |
path: bindings/java/java_code | |
# test: | |
# name: Test on ${{ matrix.target }} | |
# needs: build | |
# strategy: | |
# matrix: | |
# include: | |
# - target: x86_64-unknown-linux-gnu | |
# os: ubuntu-latest | |
# - target: aarch64-unknown-linux-gnu | |
# os: linux-arm64 | |
# - target: x86_64-apple-darwin | |
# os: macos-13 | |
# - target: aarch64-apple-darwin | |
# os: macos-14 | |
# - target: x86_64-pc-windows-gnu | |
# os: windows-latest | |
# runs-on: ${{ matrix.os }} | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Download artifacts | |
# uses: actions/download-artifact@v3 | |
# with: | |
# name: ${{ matrix.target }}-java-code | |
# path: bindings/java/java_code | |
# - name: Set up JDK | |
# uses: actions/setup-java@v3 | |
# with: | |
# distribution: 'temurin' | |
# java-version: '17' | |
# - name: Build with Gradle (no tests) | |
# run: ./gradlew build -x test | |
# working-directory: bindings/java/java_code | |
# - name: Run Gradle tests | |
# run: ./gradlew test --info --stacktrace --scan | |
# working-directory: bindings/java/java_code | |
publish: | |
name: Merge Artifacts | |
needs: [build] | |
# needs: [build, test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download x86_64-unknown-linux-gnu artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: x86_64-unknown-linux-gnu-java-code | |
path: bindings/java/java_code | |
- name: Download aarch64-unknown-linux-gnu artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: aarch64-unknown-linux-gnu-java-code | |
path: bindings/java/java_code | |
- name: Download aarch64-apple-darwin artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: aarch64-apple-darwin-java-code | |
path: bindings/java/java_code | |
- name: Download x86_64-apple-darwin artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: x86_64-apple-darwin-java-code | |
path: bindings/java/java_code | |
- name: Download x86_64-pc-windows-gnu artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: x86_64-pc-windows-gnu-java-code | |
path: bindings/java/java_code | |
- name: List merged artifacts | |
run: ls -R bindings/java/java_code |