HUGE commit #65
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 Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
# Every version supported by CheatBreakerX will be added here once added in the full project. | |
# As of currently, the only supported versions are 1.8.9, 1.9.4, 1.10.2, 1.11.2, 1.12.2 and 1.14.4 | |
name: Java CI with Gradle | |
on: [push, pull_request] | |
jobs: | |
#obtain_info: | |
# runs-on: ubuntu-latest | |
# name: Obtain commit information | |
# outputs: | |
# full_sha: ${{ steps.var.outputs.full_sha }} | |
# short_sha: ${{ steps.var.outputs.short_sha }} | |
# steps: | |
# - uses: actions/checkout@v4 | |
# with: | |
# fetch-depth: 0 | |
# - name: Generate Build Info | |
# id: var | |
# run: | | |
# echo "full_sha=$(git rev-parse HEAD)" >> $env:GITHUB_OUTPUT | |
# echo "short_sha=$(git rev-parse --short HEAD)" >> $env:GITHUB_OUTPUT | |
build: | |
runs-on: ubuntu-latest | |
# needs: obtain_info | |
steps: | |
# Gradle setup (JDK 1.8 is for 1.8.9-1.16.5, JDK 16 for 1.17.1, JDK 17 for 1.18.2-1.19.4 and JDK 21 for 1.20.6 and Gradle) | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 1.8 | |
uses: actions/[email protected] | |
with: | |
java-version: 8.0.412+9 | |
distribution: liberica | |
- name: Set up JDK 16 | |
uses: actions/[email protected] | |
with: | |
java-version: 16.0.2+7 | |
distribution: liberica | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: 17.0.11+10 | |
distribution: liberica | |
- name: Set up JDK 21 | |
uses: actions/[email protected] | |
with: | |
java-version: 21.0.3+12 | |
distribution: liberica | |
- name: Make 'gradlew' executable | |
run: chmod +x gradlew | |
# Build the different projects | |
- name: Compile CheatBreakerX 1.8.9 | |
run: ./gradlew :versions:1.8.9:build | |
- name: Compile CheatBreakerX 1.9.4 | |
run: ./gradlew :versions:1.9.4:build | |
- name: Compile CheatBreakerX 1.10.2 | |
run: ./gradlew :versions:1.10.2:build | |
- name: Compile CheatBreakerX 1.11.2 | |
run: ./gradlew :versions:1.11.2:build | |
- name: Compile CheatBreakerX 1.12.2 | |
run: ./gradlew :versions:1.12.2:build | |
- name: Compile CheatBreakerX 1.14.4-Fabric | |
run: ./gradlew :versions:1.14.4-Fabric:build | |
- name: Compile CheatBreakerX 1.15.2-Fabric (currently unimplemented) | |
run: ./gradlew :versions:1.15.2-Fabric:build | |
- name: Compile CheatBreakerX 1.16.5-Fabric (currently unimplemented) | |
run: ./gradlew :versions:1.16.5-Fabric:build | |
- name: Compile CheatBreakerX 1.17.1-Fabric (currently unimplemented) | |
run: ./gradlew :versions:1.17.1-Fabric:build | |
- name: Compile CheatBreakerX 1.18.2-Fabric (currently unimplemented) | |
run: ./gradlew :versions:1.18.2-Fabric:build | |
- name: Compile CheatBreakerX 1.19.4-Fabric (currently unimplemented) | |
run: ./gradlew :versions:1.19.4-Fabric:build | |
- name: Compile CheatBreakerX 1.20.6-Fabric (currently unimplemented) | |
run: ./gradlew :versions:1.20.6-Fabric:build | |
# Upload the artifacts through GitHub Actions | |
- name: Upload 1.8.9 artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.8.9 | |
path: versions/1.8.9/build/libs | |
- name: Upload 1.9.4 artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.9.4 | |
path: versions/1.9.4/build/libs | |
- name: Upload 1.10.2 artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.10.2 | |
path: versions/1.10.2/build/libs | |
- name: Upload 1.11.2 artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.11.2 | |
path: versions/1.11.2/build/libs | |
- name: Upload 1.12.2 artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.12.2 | |
path: versions/1.12.2/build/libs | |
- name: Upload 1.14.4-Fabric artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.14.4-Fabric | |
path: versions/1.14.4-Fabric/build/libs | |
- name: Upload 1.15.2-Fabric artifact (currently unimplemented) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.15.2-Fabric (currently unimplemented) | |
path: versions/1.15.2-Fabric/build/libs | |
- name: Upload 1.16.5-Fabric artifact (currently unimplemented) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.16.5-Fabric (currently unimplemented) | |
path: versions/1.16.5-Fabric/build/libs | |
- name: Upload 1.17.1-Fabric artifact (currently unimplemented) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.17.1-Fabric (currently unimplemented) | |
path: versions/1.17.1-Fabric/build/libs | |
- name: Upload 1.18.2-Fabric artifact (currently unimplemented) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.18.2-Fabric (currently unimplemented) | |
path: versions/1.18.2-Fabric/build/libs | |
- name: Upload 1.19.4-Fabric artifact (currently unimplemented) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.19.4-Fabric (currently unimplemented) | |
path: versions/1.19.4-Fabric/build/libs | |
- name: Upload 1.20.6-Fabric artifact (currently unimplemented) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CheatBreakerX-1.20.6-Fabric (currently unimplemented) | |
path: versions/1.20.6-Fabric/build/libs | |
# - name: Run latest-tag | |
# uses: EndBug/latest-tag@84c87607fcb948bcef069c9a27445e653113979f | |
# with: | |
# ref: cbx-${{ needs.obtain_info.outputs.short_sha }} | |
# - name: Upload files to new release | |
# uses: softprops/action-gh-release@v1 | |
# with: | |
# name: CheatBreakerX ${{ needs.obtain_info.outputs.short_sha }} | |
# tag_name: cbx-${{ needs.obtain_info.outputs.short_sha }} | |
# body: | | |
# **This release has been built by GitHub Actions** | |
# [Link to build](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) | |
# | |
# Files are linked below. This action is executed after the `upload-artifact` commands that upload to Actions, because they tend to expire and is only harder to access. | |
# | |
# Full commit hash: | |
# ``` | |
# ${{ needs.build_nightly.outputs.full_sha }} | |
# ``` | |
# files: | | |
# **/CheatBreaker-${{ needs.obtain_info.outputs.short_sha }}.jar |