clean up ci

This commit is contained in:
kawaiizenbo 2024-11-09 18:55:24 -07:00
parent 8f9a6005f5
commit 2e01a65ab4

View file

@ -1,8 +1,3 @@
# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [pull_request, push]
@ -10,12 +5,11 @@ jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
21, # Current Java LTS & minimum supported by Minecraft
21, # java version used since 1.20.5
]
# and run on both Linux and Windows
os: [ubuntu-22.04]
# only linux
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
@ -28,12 +22,10 @@ jobs:
java-version: ${{ matrix.java }}
distribution: 'microsoft'
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: capture build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '21' }} # Only upload artifacts built from latest java on one OS
uses: actions/upload-artifact@v3
with:
name: Artifacts