Skip to content

Commit

Permalink
feature comment for easier search and enabling
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallen-Breath committed Oct 8, 2023
1 parent 8df1aea commit e68536d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ on:
type: string
required: false
default: ''
mixin_audit:
description: run mixin audit for Minecraft server after build
type: boolean
required: false
default: false
# # [FEATURE] MIXIN_AUDITOR
# mixin_audit:
# description: run mixin audit for Minecraft server after build
# type: boolean
# required: false
# default: false

jobs:
build:
Expand Down Expand Up @@ -56,7 +57,8 @@ jobs:
BUILD_ID: ${{ github.run_number }}
BUILD_RELEASE: ${{ inputs.release }}

# - name: Run Mixin Audit Check
# # [FEATURE] MIXIN_AUDITOR
# - name: Run mixin audit check for Minecraft server
# if: ${{ inputs.mixin_audit }}
# timeout-minutes: 10
# run: |
Expand All @@ -71,6 +73,7 @@ jobs:
name: build-artifacts
path: versions/*/build/libs/

# # [FEATURE] FALLENS_MAVEN
# - name: Publish with gradle
# run: |
# if [ -z "${{ inputs.target_subproject }}" ]; then
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ jobs:
build:
uses: ./.github/workflows/build.yml
secrets: inherit
with:
mixin_audit: true
# # [FEATURE] MIXIN_AUDITOR
# with:
# mixin_audit: true
5 changes: 4 additions & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

// runtime mods
// modRuntimeOnly 'me.fallenbreath:mixin-auditor:0.1.0'
// if (mcVersion < 11904) {
// modRuntimeOnly(mcVersion < 11900 ? "com.github.astei:lazydfu:0.1.2" : "com.github.Fallen-Breath:lazydfu:a7cfc44c0c")
// }
// // [FEATURE] MIXIN_AUDITOR
// modRuntimeOnly 'me.fallenbreath:mixin-auditor:0.1.0'

// dependencies
// include(modImplementation(fabricApi.module("fabric-resource-loader-v0", project.fabric_api_version)))
Expand All @@ -59,6 +60,7 @@ loom {
runDir '../../run'
vmArgs '-Dmixin.debug.export=true'
}
// // [FEATURE] MIXIN_AUDITOR
// runs {
// serverMixinAudit {
// server()
Expand Down Expand Up @@ -187,6 +189,7 @@ publishing {
repositories {
// mavenLocal()

// // [FEATURE] FALLENS_MAVEN
// maven {
// url = version.endsWith("SNAPSHOT") ? "https://maven.fallenbreath.me/snapshots" : "https://maven.fallenbreath.me/releases"
// credentials(PasswordCredentials) {
Expand Down

0 comments on commit e68536d

Please sign in to comment.