pipeline - automatic appimage and release creator #68
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.
soccerwindow2-appimage.mp4
Overview
This merge request introduces the capability to automatically build and release the latest version of soccerwindow2 to GitHub. It enables the creation of the application's AppImage within the GitHub action pipeline, which is subsequently saved to the release on GitHub. This enhancement simplifies the download and execution process of the soccerwindow2 for RoboCup users.
Technical Implementation
The merge request involves the addition of the following files to the repository:
.github/workflows/main.yml
: This is the GitHub action pipeline responsible for building the AppImage and publishing the release.utils/appimage/*
: This directory contains all files related to the building of the AppImage, including:CMakeLists.txt
-> I changed the version to2.0.0
to be in the semantic format [MORE].It seems like for building soccerwindow2 we need to build the librcsc too, in the
build_code.sh
file I do clone and build the librcsc too.In the event that the release name already exists in the GitHub releases, the creation process will be bypassed.
How to use
To create a new release, the following steps must be undertaken:
CMakeLists.txt
file.Furthermore, after each push to the registry, the AppImage can be utilized to validate the correctness of the proposed changes.
External Resources Utilized
Additional Resources