Skip to content

Commit

Permalink
Update Build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
modenicheng authored Aug 1, 2023
1 parent d0f8ea1 commit 3bc6361
Showing 1 changed file with 1 addition and 95 deletions.
96 changes: 1 addition & 95 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,105 +83,11 @@ jobs:
name: outputs
path: outputs

build_on_java16:
# for minecraft 1.17+
runs-on: ubuntu-latest
strategy:
matrix:
ver:
- '1.17.1'
- '1.17'
env:
ver: ${{ matrix.ver }}

steps:
- name: Setup java
uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: "16"

- name: Download BuildTools.jar
run: wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar

- run: mkdir ./outputs

- name: Build Jars
# if: ${{ matrix.ver != env.latest }}
continue-on-error: true
run: java -jar BuildTools.jar --rev $ver --output-dir ./outputs

- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: outputs
path: outputs

build_on_java8:
# for minecraft 1.17+
runs-on: ubuntu-latest
strategy:
matrix:
ver:
- '1.16.5'
- '1.16.4'
- '1.16.3'
- '1.16.2'
- '1.16.1'
- '1.15.2'
- '1.15.1'
- '1.15'
- '1.14.4'
- '1.14.3'
- '1.14.2'
- '1.14.1'
- '1.14'
- '1.13.2'
- '1.13.1'
- '1.13'
- '1.12.2'
- '1.12.1'
- '1.12'
- '1.11.2'
- '1.11.1'
- '1.11'
- '1.10.2'
- '1.9.4'
- '1.9.2'
- '1.9'
- '1.8.8'
- '1.8.3'
- '1.8'
env:
ver: ${{ matrix.ver }}

steps:
- name: Setup java
uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: "8"

- name: Download BuildTools.jar
run: wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar

- run: mkdir ./outputs

- name: Build Jars
continue-on-error: true
run: java -jar BuildTools.jar --rev $ver --output-dir ./outputs

- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: outputs
path: outputs



upload_and_dist:
needs:
- build_on_java16
- build_on_java8
- build_on_java18

runs-on: ubuntu-latest
Expand Down

0 comments on commit 3bc6361

Please sign in to comment.