Merge pull request #11 from mk868/license-check-workflow #49
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: Check sources with Maven | |
run: | | |
mvn -B --file jgpio/pom.xml license:check | |
# TODO check formatting | |
- 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 |