animalrpfabric/.forgejo/workflows/build.yml

37 lines
1.2 KiB
YAML
Raw Normal View History

2024-09-13 14:17:39 +00:00
# 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]
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
21, # Current Java LTS
]
2024-09-13 14:20:10 +00:00
runs-on: node-16
2024-09-13 14:17:39 +00:00
steps:
- name: checkout repository
uses: https://github.com/actions/checkout@v4
- name: validate gradle wrapper
uses: https://github.com/gradle/wrapper-validation-action@v2
- name: setup jdk ${{ matrix.java }}
uses: https://github.com/actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'microsoft'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: capture build artifacts
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
2024-09-13 15:18:59 +00:00
uses: https://github.com/actions/upload-artifact@v3
2024-09-13 14:17:39 +00:00
with:
name: Artifacts
path: build/libs/