Add Android cross-compilation support to CI and publish artifacts#90
Merged
nbassler merged 3 commits intoApr 1, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #90 +/- ##
==========================================
+ Coverage 72.33% 75.39% +3.06%
==========================================
Files 38 30 -8
Lines 3148 2764 -384
Branches 452 396 -56
==========================================
- Hits 2277 2084 -193
+ Misses 784 593 -191
Partials 87 87 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds packaging + CI release workflows so libdedx can be consumed as prebuilt artifacts (notably for Android), and updates the CMake install to support find_package(dedx CONFIG) consumers.
Changes:
- Add Android and Windows GitHub Actions workflows that build/install and upload packaged artifacts on releases.
- Add CMake package export/install support (
dedxTargets,dedxConfig.cmake, version file) and make install paths useGNUInstallDirs. - Extend install smoke testing with an additional CMake-based consumer project.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
CMakeLists.txt |
Adds install/package config generation and build toggles for examples/tests. |
src/CMakeLists.txt |
Switches to exported targets + GNUInstallDirs install paths; installs dedxTargets. |
cmake/dedxConfig.cmake.in |
Adds config-mode package file to expose exported targets and a dedx::dedx convenience target. |
tests/install_smoke_test.cmake |
Adds a CMake-based consumer build/run to validate find_package usage. |
tests/install_consumer_cmake/CMakeLists.txt |
New minimal CMake consumer project used by the smoke test. |
examples/CMakeLists.txt |
Aligns install destination with GNUInstallDirs and normalizes formatting. |
.github/workflows/build-android.yml |
New Android cross-compile workflow producing per-ABI packaged artifacts. |
.github/workflows/build-windows.yml |
New Windows workflow producing a packaged install tree artifact. |
.gitignore |
Ignores build-packaging/. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was
linked to
issues
Apr 1, 2026
Closed
…ate packaging metadata and improve test configurations
Closed
…g and adjust header filter
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.
closes #77