Skip to content

Improve workflow

Improve workflow #56

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "main", "release-workflow" ]
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: Check sources with Maven
run: |
mvn -B -f jgpio/pom.xml license:check
# TODO check formatting
- name: Build with Maven
run: |
./prepare.sh
mvn -B install -f jgpio/pom.xml -Djextract.bin=../jextract/bin/jextract
- name: Build IT with Maven
run: mvn -B package -f jgpio-it/pom.xml
# TODO run IT on remote Orange Pi One Plus
test:
needs: [build]
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven
- name: Test IT
run: mvn -B verify -f jgpio-it/pom.xml