Add minor details #15
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 CI with Maven | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 23 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '23' | |
distribution: 'temurin' | |
cache: maven | |
- name: Cache jextract | |
id: cache-jextract | |
uses: actions/cache@v4 | |
with: | |
path: jextract | |
key: 22-jextract+5-33 | |
- name: Set up jextract | |
if: steps.cache-jextract.outputs.cache-hit != 'true' | |
run: ./prepare-jextract.sh | |
- name: Build with Maven | |
run: | | |
./prepare.sh | |
mvn -B install --file jgpio/pom.xml -Djextract.bin=../jextract/bin/jextract | |
- name: Build iT with Maven | |
run: mvn -B package --file jgpio-it/pom.xml | |
# TODO run IT on remote Orange Pi One Plus |