Update Domain #149
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Nightly Builds | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- "src/**/*.java" | |
- "__legacy__/**/*.java" | |
- "pom.xml" | |
- ".github/workflows/*" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- "src/**/*.java" | |
- "__legacy__/**/*.java" | |
- "pom.xml" | |
- ".github/workflows/*" | |
jobs: | |
build: | |
name: Build ${{ matrix.mc-version }} | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.unsupported }} | |
strategy: | |
matrix: | |
java-version: [17] | |
mc-version: [1.17.1, 1.18.2, 1.19.2] | |
unsupported: [false] | |
include: | |
- java-version: 8 | |
mc-version: 1.8 | |
unsupported: true | |
- java-version: 8 | |
mc-version: 1.12.2 | |
unsupported: true | |
- java-version: 8 | |
mc-version: 1.16.5 | |
unsupported: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java-version }} | |
cache: 'maven' | |
- name: Setup Spigot Build Environment for ${{ matrix.mc-version }} | |
run: | | |
test -d BuildTools || mkdir BuildTools | |
cd BuildTools | |
wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar | |
java -jar BuildTools.jar --rev ${{ matrix.mc-version }} | |
cd .. | |
- name: Change target version to ${{ matrix.mc-version }} | |
run: | | |
./.github/workflow-files/change-ver.sh ${{ matrix.mc-version }} | |
- name: Build with Maven | |
run: mvn package | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
# Artifact name | |
name: Agent-${{ matrix.mc-version }}.jar | |
# A file, directory or wildcard pattern that describes what to upload | |
path: target/**/*.jar |