Update CI/CD for Multi-Platform Releases#113
Conversation
- Updated .github/workflows/build.yml to support Windows, Linux, and Android builds. - Added automated GitHub Release creation on version tags (v*). - Refined CMakeLists.txt for cross-platform compatibility. - Added platform guards in src/main.cpp and src/Camera.cpp/h to support Android (stub mode) and Linux. - Fixed dependency cloning logic in CI and removed hardcoded SDK paths. - Removed accidentally included binary test artifact. Co-authored-by: TECHNICANGEL <197574689+TECHNICANGEL@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
- Added libwayland-dev and libwayland-bin to Linux build job to fix wayland-scanner error. - Fixed Android compilation by guarding GLFW-dependent code with #ifndef ANDROID. - Defined Android logging macros (LOGI, LOGE) in main.cpp. - Updated VulkanRayTracing.cpp to use platform-appropriate external memory handle types (FD on Linux/Android). - Guarded camera input handling in Camera.cpp/h for Android. Co-authored-by: TECHNICANGEL <197574689+TECHNICANGEL@users.noreply.github.com>
- Updated .github/workflows/build.yml to support automated releases on Windows tags (v*). - Added packaging logic to create a ZIP file with the executable, shaders, and assets. - Added a release job using softprops/action-gh-release to upload artifacts. - Ensured dependency cloning logic in CI is safe and clean. - Kept source code changes out of this update to focus purely on CI/CD. Co-authored-by: TECHNICANGEL <197574689+TECHNICANGEL@users.noreply.github.com>
This change updates the CI/CD pipeline to automatically build and release binaries for Windows, Linux, and Android whenever a new version tag (e.g., v1.0) is pushed to the repository.
Key changes include:
build-linuxandbuild-androidjobs. Thebuild-windowsjob was updated to package artifacts. A newreleasejob handles the creation of GitHub Releases and uploads the ZIP/TAR.GZ files.CMakeLists.txtto handle different platforms, link necessary libraries on Linux (pthread, dl), and support Android NDK builds as a shared library.PR created automatically by Jules for task 14180229479032141125 started by @TECHNICANGEL