ci: add Kotlin example project compilation to CI pipeline#217
Merged
Takaros999 merged 1 commit intovladimirburdukov/swift-example-project-cifrom Apr 20, 2026
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
a4ef43b to
22da229
Compare
c822905 to
018c3b9
Compare
22da229 to
dda2305
Compare
2cbb2d8 to
3fa7235
Compare
dda2305 to
6ccd9ef
Compare
3fa7235 to
89b8958
Compare
6ccd9ef to
e774a02
Compare
Contributor
|
@codex review |
|
Codex Review: Didn't find any major issues. 🚀 ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
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". |
d44c998
into
vladimirburdukov/swift-example-project-ci
23 checks passed
chipp
added a commit
that referenced
this pull request
Apr 21, 2026
This was referenced Apr 21, 2026
chipp
added a commit
that referenced
this pull request
Apr 21, 2026
* ci: add Swift example project compilation to CI pipeline * ci: add Kotlin example project compilation to CI pipeline (#217)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

TL;DR
Adds CI support for building the Kotlin sample Android app as part of the CI pipeline.
What changed?
Swatinem/rust-cache@v2for more efficient Rust dependency caching.IDKitSampleApp) using Gradle./usr/local/lib/androidfrom the disk space cleanup step to preserve the Android SDK tooling needed for the build.connectUrlMode: nullargument inMainActivity.ktto ensure the sample app compiles correctly.How to test?
Push a commit or open a PR and verify that the CI pipeline completes successfully, including the new "Build Kotlin sample app" step producing a debug APK without errors.
Why make this change?
The Kotlin sample app was not previously built in CI, meaning regressions in the Android bindings or sample app code could go undetected. This change ensures the sample app is compiled and validated on every CI run, catching build failures early.