Skip to content

Conversation

@cowboydaniel
Copy link
Owner

Summary

  • remove the placeholder clangd artifact from the runtime bundle
  • run the clangd build script before assembling the Android APK in CI, wiring the NDK path
  • update documentation to describe only the real clangd binary requirement

Testing

  • not run (not requested)

Codex Task

@cowboydaniel cowboydaniel merged commit 5c977cf into main Nov 20, 2025
1 check failed
@cowboydaniel cowboydaniel deleted the codex/fix-clangd-runtime-verification-error branch November 20, 2025 22:32
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines 52 to +56
- name: Assemble debug APK
working-directory: android/android-studio
run: ./gradlew --no-daemon assembleDebug
env:
ANDROID_NDK_HOME: ${{ env.ANDROID_SDK_ROOT }}/ndk/26.1.10909125
run: ../runtime/clangd/build-clangd-android.sh && ./gradlew --no-daemon assembleDebug

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Download LLVM sources before invoking clangd build

The new Android build step now runs ../runtime/clangd/build-clangd-android.sh before Gradle, but the workflow never fetches the LLVM sources that script requires. The script aborts immediately when $LLVM_PROJECT_DIR ($GITHUB_WORKSPACE/llvm-project by default) is absent (see android/runtime/clangd/build-clangd-android.sh lines 13‑15), so the Android APK job will fail on every run in CI after this change. Add a checkout/download of llvm-project (or set LLVM_PROJECT_DIR to an existing path) before calling the script.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants