Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Aspect.java, Fix #228 #229

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
Skip to content
Navigation Menu
CleanroomMC
/
GroovyScript

Type / to search
Code
Issues
9
Pull requests
9
Actions
Projects
Wiki
Security
Insights
Build Test Artifact
pass event as delegate and not as parameter when event class is passe… #44
Jobs
Run details
Workflow file for this run
.github/workflows/test_build.yaml at dfcf525
# This workflow will build and upload test artifact
# Simple workflow with ignoring condition to prevent unneccessary build
# To download artifact check on job task

name: Build Test Artifact

on:
push:
branches:
- master
paths-ignore:
- '.github/**' # Release GHA file, please change this when you change the file name
- 'LICENSE'
- 'README.md'
- 'examples/**'
- 'editors/**'
- '.editorconfig'
workflow_dispatch:

jobs:
build:
name: Build and Upload Artifact
runs-on: ubuntu-latest

steps:
- name: Checkout branch
uses: actions/[email protected]

# https://github.com/madhead/read-java-properties#error-java_home-is-set-to-an-invalid-directory
- name: Gather Gradle properties
uses: madhead/read-java-properties@latest
id: gradle_properties
with:
file: gradle.properties
all: true

- name: Retrieve SHA short
id: vars
shell: bash
run: echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Change mod version
run: sed -i "s/mod_version.*=.*/mod_version = ${{ steps.gradle_properties.outputs.mod_version }}-${{ steps.vars.outputs.SHA_SHORT }}/g" gradle.properties

- name: Set up Temurin JDK 8
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'
cache: gradle # Only cache stuff since test build action happen mostly

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup Gradle
uses: gradle/actions/[email protected]

- name: Build Project
run: ./gradlew build

- name: Upload Build Artifacts
uses: actions/[email protected]
with:
name: GroovyScript-${{ steps.gradle_properties.outputs.modVersion }}-${{ github.run_number }}
path: build/libs
pass event as delegate and not as parameter when event class is passed in listen method · CleanroomMC/GroovyScript@dfcf525


67 changes: 67 additions & 0 deletions .github/workflows/gradle2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CI with Gradle

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up Temurin JDK 8
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0

- name: Build with Gradle Wrapper
run: ./gradlew build

# NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html).
# If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.
#
# - name: Setup Gradle
# uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
# with:
# gradle-version: '8.9'
#
# - name: Build with Gradle 8.9
# run: gradle build

dependency-submission:

runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v4
- name: Set up Temurin JDK 8
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'

# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
# See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
67 changes: 67 additions & 0 deletions .github/workflows/gradle3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CI with Gradle

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0

- name: Build with Gradle Wrapper
run: ./gradlew build

# NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html).
# If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.
#
# - name: Setup Gradle
# uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
# with:
# gradle-version: '8.9'
#
# - name: Build with Gradle 8.9
# run: gradle build

dependency-submission:

runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
# See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
65 changes: 65 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# This workflow will build and upload test artifact
# Simple workflow with ignoring condition to prevent unneccessary build
# To download artifact check on job task

name: Build Test Artifact

on:
push:
branches:
- master
paths-ignore:
- '.github/**' # Release GHA file, please change this when you change the file name
- 'LICENSE'
- 'README.md'
- 'examples/**'
- 'editors/**'
- '.editorconfig'
workflow_dispatch:

jobs:
build:
name: Build and Upload Artifact
runs-on: ubuntu-latest

steps:
- name: Checkout branch
uses: actions/[email protected]

# https://github.com/madhead/read-java-properties#error-java_home-is-set-to-an-invalid-directory
- name: Gather Gradle properties
uses: madhead/read-java-properties@latest
id: gradle_properties
with:
file: gradle.properties
all: true

- name: Retrieve SHA short
id: vars
shell: bash
run: echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Change mod version
run: sed -i "s/mod_version.*=.*/mod_version = ${{ steps.gradle_properties.outputs.mod_version }}-${{ steps.vars.outputs.SHA_SHORT }}/g" gradle.properties

- name: Set up Temurin JDK 8
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'
cache: gradle # Only cache stuff since test build action happen mostly

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup Gradle
uses: gradle/actions/[email protected]

- name: Build Project
run: ./gradlew build

- name: Upload Build Artifacts
uses: actions/[email protected]
with:
name: GroovyScript-${{ steps.gradle_properties.outputs.modVersion }}-${{ github.run_number }}
path: build/libs
65 changes: 65 additions & 0 deletions .github/workflows/main2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# This workflow will build and upload test artifact
# Simple workflow with ignoring condition to prevent unneccessary build
# To download artifact check on job task

name: Build Test Artifact

on:
push:
branches:
- master
paths-ignore:
- '.github/**' # Release GHA file, please change this when you change the file name
- 'LICENSE'
- 'README.md'
- 'examples/**'
- 'editors/**'
- '.editorconfig'
workflow_dispatch:

jobs:
build:
name: Build and Upload Artifact
runs-on: ubuntu-latest

steps:
- name: Checkout branch
uses: actions/[email protected]

# https://github.com/madhead/read-java-properties#error-java_home-is-set-to-an-invalid-directory
- name: Gather Gradle properties
uses: madhead/read-java-properties@latest
id: gradle_properties
with:
file: gradle.properties
all: true

- name: Retrieve SHA short
id: vars
shell: bash
run: echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Change mod version
run: sed -i "s/mod_version.*=.*/mod_version = ${{ steps.gradle_properties.outputs.mod_version }}-${{ steps.vars.outputs.SHA_SHORT }}/g" gradle.properties

- name: Set up Temurin JDK 8
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'
cache: gradle # Only cache stuff since test build action happen mostly

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup Gradle
uses: gradle/actions/[email protected]

- name: Build Project
run: ./gradlew build

- name: Upload Build Artifacts
uses: actions/[email protected]
with:
name: GroovyScript-${{ steps.gradle_properties.outputs.modVersion }}-${{ github.run_number }}
path: build/libs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public AspectBuilder blend(int blend) {
@RecipeBuilderRegistrationMethod
public thaumcraft.api.aspects.Aspect register() {
try {
thaumcraft.api.aspects.Aspect aspect = new thaumcraft.api.aspects.Aspect(tag, chatColor, components.getAspects(), image, blend);
thaumcraft.api.aspects.Aspect aspect = new thaumcraft.api.aspects.Aspect(tag, chatColor, components.size() == 0 ? null : components.getAspects(), image, blend);
ModSupport.THAUMCRAFT.get().aspect.add(aspect);
return aspect;
} catch (IllegalArgumentException e) {
Expand Down