Merge branch 'dev/1.21' into dev/1.21-networking #170
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: Build Kessoku Lib | |
on: [pull_request, push, workflow_dispatch] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: | |
- 21 | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: setup jdk ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: "microsoft" | |
- name: setup gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: make gradle wrapper executable | |
run: chmod +x ./gradlew | |
- name: build | |
run: ./gradlew build --warning-mode=all | |
- name: capture build artifacts | |
if: ${{ matrix.java == '21' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Artifacts | |
path: | | |
*/*/build/libs |