Skip to content

fix: JAVA_HOME points to JRE directory on OpenJDK8, should instead point to JDK directory #24

fix: JAVA_HOME points to JRE directory on OpenJDK8, should instead point to JDK directory

fix: JAVA_HOME points to JRE directory on OpenJDK8, should instead point to JDK directory #24

Workflow file for this run

name: java-locator CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Build Rust with Cargo
run: cargo build --verbose
- name: Test Rust with Cargo
run: cargo test --verbose -- --nocapture
test-legacy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Test Rust with Cargo
run: JAVAM_HOME="" cargo test --features=legacy-java-compat --verbose -- --nocapture