mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 23:58:02 -05:00
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
name: Build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
java: [17-jdk, 18-jdk]
|
|
runs-on: ubuntu-20.04
|
|
container:
|
|
image: eclipse-temurin:${{ matrix.java }}
|
|
options: --user root
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: gradle/wrapper-validation-action@v1
|
|
- run: ./gradlew check build publishToMavenLocal --stacktrace --warning-mode=fail -Porg.gradle.parallel.threads=4
|
|
- uses: Juuxel/publish-checkstyle-report@v1
|
|
if: ${{ failure() }}
|
|
with:
|
|
reports: |
|
|
**/build/reports/checkstyle/*.xml
|
|
- run: mkdir run && echo "eula=true" >> run/eula.txt
|
|
- run: ./gradlew runAutoTestServer --stacktrace --warning-mode=fail
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Artifacts
|
|
path: build/libs/
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Artifacts
|
|
path: ./*/build/libs/
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Maven Local
|
|
path: /root/.m2/repository
|