2021-07-12 04:10:13 +00:00
|
|
|
# This workflow will build a Java project with Gradle
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
|
|
|
|
|
|
|
|
name: Java CI with Gradle
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-03-06 01:19:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-03 20:46:39 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-04-28 14:59:04 +00:00
|
|
|
- name: Set up JDK 21
|
2024-03-06 01:19:17 +00:00
|
|
|
uses: actions/setup-java@v4
|
2021-07-12 04:10:13 +00:00
|
|
|
with:
|
2024-04-28 14:59:04 +00:00
|
|
|
java-version: '21'
|
2023-01-06 03:25:03 +00:00
|
|
|
distribution: 'temurin'
|
2022-12-12 20:24:43 +00:00
|
|
|
cache: gradle
|
2022-06-01 21:49:41 +00:00
|
|
|
|
2021-07-12 04:10:13 +00:00
|
|
|
- name: Grant execute permission for gradlew
|
|
|
|
run: chmod +x gradlew
|
|
|
|
|
|
|
|
- name: Build with Gradle
|
2023-10-15 18:50:23 +00:00
|
|
|
run: ./gradlew build -Pmod_version="$(git describe --always --tags --first-parent | cut -c2-)"
|
2022-06-03 20:24:17 +00:00
|
|
|
|
2021-07-12 04:10:13 +00:00
|
|
|
- name: Archive Artifacts
|
2024-03-06 01:19:17 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2021-07-12 04:10:13 +00:00
|
|
|
with:
|
|
|
|
name: Artifacts
|
|
|
|
path: dist/
|
|
|
|
|
|
|
|
- name: Archive mapping.txt
|
2024-03-06 01:19:17 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2021-07-12 04:10:13 +00:00
|
|
|
with:
|
|
|
|
name: Mappings
|
2022-04-05 02:15:21 +00:00
|
|
|
path: mapping/
|