From 2e01a65ab4cc1017751a827f863718bd346b60cf Mon Sep 17 00:00:00 2001 From: kawaiizenbo <48113593+kawaiizenbo@users.noreply.github.com> Date: Sat, 9 Nov 2024 18:55:24 -0700 Subject: [PATCH] clean up ci --- .github/workflows/build.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98b3f6d..c1b0523 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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