fabric/.github/workflows/build.yml
modmuss50 df3654b364
Move deprecated modules, create own maven BOM for the deprecated modules. (#2171)
* Move deprecated modules to a sub directory.
Remove deprecated modules from the default maven pom
Create a new "fabric-api-legacy" bom with the deprecated modules.

* Fix main "fabric" project not beign a dep for the legacy bom.

* rename artifact to fabric-api-deprecated

* Spotless

* Use the latest version of spotless.
2022-05-01 15:44:16 +01:00

31 lines
935 B
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 --parallel --warning-mode=fail
- 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