$ git remote set-url origin git@github.com:dayo05/aris.luagen.git $ git fetch --prune --force origin From github.com:dayo05/aris.luagen ddf9fda..667bf38 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 667bf38 Fix API setup package step $ 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 667bf387531ae3a8de7cdff468fbb3ebc3bd1055 [git] HEAD=667bf387531ae3a8de7cdff468fbb3ebc3bd1055 [config] using workspace/kei.toml === step: build === $ ./gradlew build > 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 7s 14 actionable tasks: 14 executed === step: package-api-setup === $ bash -c set -e; ARCHIVER="$(command -v 7z || command -v 7za || command -v 7zr || true)"; test -n "$ARCHIVER" || { echo '7z, 7za, or 7zr is required' >&2; exit 1; }; rm -rf build/api-setup build/aris-luagen-api-setup.7z build/aris-luagen-api-setup.7z.sha256; mkdir -p build/api-setup/apis; found_api=false; for file in build/generated/ksp/main/resources/apis/*.json; do test -f "$file" || continue; cp "$file" build/api-setup/apis/; found_api=true; done; test "$found_api" = true || { echo 'No generated API schema found under build/generated/ksp/main/resources/apis' >&2; exit 1; }; 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 CHECKSUM="$(sha256sum build/aris-luagen-api-setup.7z)"; else CHECKSUM="$(shasum -a 256 build/aris-luagen-api-setup.7z)"; fi; printf '%s\n' "${CHECKSUM%% *}" > build/aris-luagen-api-setup.7z.sha256 7z, 7za, or 7zr is required [error] step 'package-api-setup' failed (exit Some(1))