Skip to content

ci(actions): update build and pr-compile to add workflow_dispatch #48

ci(actions): update build and pr-compile to add workflow_dispatch

ci(actions): update build and pr-compile to add workflow_dispatch #48

Workflow file for this run

# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [pull_request, push, workflow_dispatch]
jobs:
build-java-17:
name: Build on Java 17
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: microsoft
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Build
run: ./gradlew build
- name: Capture build artifacts
uses: actions/upload-artifact@v4
with:
name: matrix-blocks-java-17
path: build/libs/*.jar
if-no-files-found: error
build-java-21:
name: Build on Java 21
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: microsoft
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Build
run: ./gradlew build
- name: Capture build artifacts
uses: actions/upload-artifact@v4
with:
name: matrix-blocks-java-21
path: build/libs/*.jar
if-no-files-found: error