Draft
Fix: Enable git submodules in GitHub Actions to resolve Flatpak build failure#1
Conversation
Co-authored-by: saimonn <6391720+saimonn@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix Flatpak build by adding missing libsoup-2.4.json shared module
Fix: Enable git submodules in GitHub Actions to resolve Flatpak build failure
Aug 14, 2025
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.
Problem
The Flatpak build was failing with the following error:
The build manifest
com.citrix.ICAClient.ymlreferencesshared-modules/libsoup/libsoup-2.4.jsonon line 46, but this file was not available during the CI build.Root Cause
The repository has
shared-modulescorrectly configured as a git submodule pointing to the Flathub shared-modules repository, but the GitHub Actions workflow was usingactions/checkout@v4without thesubmodules: trueoption. This meant that while the submodule directory existed, it was empty and didn't contain the requiredlibsoup-2.4.jsonfile.Solution
Updated the GitHub Actions workflow (
.github/workflows/flatpak-build.yml) to properly initialize git submodules during checkout:This ensures that the
shared-modulessubmodule is populated with all required files from the Flathub shared-modules repository, including thelibsoup-2.4.jsonmanifest that webkit2gtk-4.0 depends on.Testing
Verified that:
73f08ed)shared-modules/libsoup/libsoup-2.4.jsonexists and contains valid JSONThis minimal change should resolve the Flatpak build failure without requiring any modifications to the existing submodule configuration or build dependencies.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.