$ git remote set-url origin git@github.com:dayo05/aris.luagen.git $ git fetch --prune --force origin From github.com:dayo05/aris.luagen df6060d..ddf9fda master -> origin/master $ git checkout -B master origin/master branch 'master' set up to track 'origin/master'. Your branch is up to date with 'origin/master'. Reset branch 'master' $ git reset --hard origin/master HEAD is now at ddf9fda Add API schema export for block writer $ git clean -fdx Removing .gradle/ Removing .kotlin/ Removing ap/build/ Removing build/ $ git submodule sync --recursive $ git submodule update --init --recursive --force $ git rev-parse HEAD ddf9fda0ad9ea98a8bcaa1b39e6bf1d2186f67ec [git] HEAD=ddf9fda0ad9ea98a8bcaa1b39e6bf1d2186f67ec [config] using workspace/kei.toml === step: build === $ ./gradlew build Starting a Gradle Daemon (subsequent builds will be faster) > Task :checkKotlinGradlePluginConfigurationErrors SKIPPED > Task :ap:checkKotlinGradlePluginConfigurationErrors SKIPPED > Task :ap:processResources > Task :ap:sourcesJar > Task :ap:processTestResources NO-SOURCE > Task :ap:compileKotlin w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:26:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:45:13 The corresponding parameter in the supertype 'JavaObjectArgument' is named 'docSignatureBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:75:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:105:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:226:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:256:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:286:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:318:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:388:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. w: file:///home/dayo/kei/data/workspaces/aris.luagen/ap/src/main/kotlin/me/ddayo/aris/luagen/ArgumentManager.kt:453:13 The corresponding parameter in the supertype 'Argument' is named 'docStringBuilder'. This may cause problems when calling this function with named arguments. > Task :ap:compileJava NO-SOURCE > Task :ap:classes > Task :ap:jar > Task :ap:assemble > Task :ap:compileTestKotlin NO-SOURCE > Task :ap:compileTestJava NO-SOURCE > Task :ap:testClasses UP-TO-DATE > Task :ap:test NO-SOURCE > Task :ap:check UP-TO-DATE > Task :ap:build > Task :kspKotlin > Task :processResources > Task :sourcesJar > Task :compileKotlin w: file:///home/dayo/kei/data/workspaces/aris.luagen/src/main/kotlin/me/ddayo/aris/luagen/LuaEngine.kt:217:16 Delegated member 'fun toLua(engine: LuaEngine, lua: Lua): Unit' hides supertype override 'fun toLua(engine: LuaEngine, lua: Lua): Unit'. Specify proper override explicitly. w: file:///home/dayo/kei/data/workspaces/aris.luagen/src/main/kotlin/me/ddayo/aris/luagen/LuaMain.kt:55:39 No cast needed. > Task :compileJava > Task :classes > Task :jar > Task :assemble > Task :kspTestKotlin > Task :processTestResources > Task :compileTestKotlin w: file:///home/dayo/kei/data/workspaces/aris.luagen/build/generated/ksp/test/kotlin/me/ddayo/aris/gen/TestGenerated.kt:135:65 No cast needed. w: file:///home/dayo/kei/data/workspaces/aris.luagen/src/test/kotlin/me/ddayo/aris/test/Test.kt:99:1 Delegated member 'fun toLua(engine: LuaEngine, lua: Lua): Unit' hides supertype override 'fun toLua(engine: LuaEngine, lua: Lua): Unit'. Specify proper override explicitly. > Task :compileTestJava NO-SOURCE > Task :testClasses > Task :test > Task :check > Task :build BUILD SUCCESSFUL in 35s 14 actionable tasks: 14 executed === step: package-api-setup === $ bash -c ARCHIVER="$(command -v 7z || command -v 7za || command -v 7zr)" && rm -rf build/api-setup build/aris-luagen-api-setup.7z build/aris-luagen-api-setup.7z.sha256 && mkdir -p build/api-setup/apis && cp -R build/generated/ksp/main/resources/apis/. build/api-setup/apis/ && cp -R apis/i18n build/api-setup/apis/ && (cd build/api-setup && "$ARCHIVER" a -t7z ../aris-luagen-api-setup.7z apis) && if command -v sha256sum >/dev/null 2>&1; then sha256sum build/aris-luagen-api-setup.7z; else shasum -a 256 build/aris-luagen-api-setup.7z; fi | awk '{print $1}' > build/aris-luagen-api-setup.7z.sha256 [error] step 'package-api-setup' failed (exit Some(1))