-
Notifications
You must be signed in to change notification settings - Fork 7
43 lines (37 loc) · 1.04 KB
/
ci-workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
# This is a good test for the locate-jdk-only feature, as the JRE is in a different path on JDK 8
test-locate-jdk:
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: JAVA_HOME="" cargo test --features=locate-jdk-only --verbose -- --nocapture