fix: migrate release workflow to GitHub-hosted runners - #2
Merged
Conversation
Agent-Logs-Url: https://github.com/Jelloeater/vicinae/sessions/ae051779-d342-416b-931d-aaa22873e712 Co-authored-by: Jelloeater <7862369+Jelloeater@users.noreply.github.com>
Claude created this pull request from a session on behalf of
Jelloeater
June 7, 2026 23:31
View session
Jelloeater
marked this pull request as ready for review
June 7, 2026 23:31
There was a problem hiding this comment.
Pull request overview
Migrates the release workflow off self-hosted runners by switching all release jobs to GitHub-hosted Ubuntu runners and adding explicit dependency installation so releases can be built in a vanilla environment.
Changes:
- Switched
runs-onfor release jobs from self-hosted runner labels toubuntu-latest. - Added
apt-getinstallation steps for Qt6, build toolchain, and runtime/build dependencies in each job. - Removed
-DCMAKE_PREFIX_PATH="$Qt6_DIR"from the binary build configuration.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+66
to
+71
| cmake \ | ||
| qt6-base-dev \ | ||
| qt6-declarative-dev \ | ||
| qt6-wayland-dev \ | ||
| qt6-svg-dev \ | ||
| qt6-tools-dev \ |
Comment on lines
+200
to
+206
| cmake \ | ||
| qt6-base-dev \ | ||
| qt6-declarative-dev \ | ||
| qt6-wayland-dev \ | ||
| qt6-svg-dev \ | ||
| qt6-tools-dev \ | ||
| libgl1-mesa-dev \ |
Comment on lines
+288
to
+294
| cmake \ | ||
| qt6-base-dev \ | ||
| qt6-declarative-dev \ | ||
| qt6-wayland-dev \ | ||
| qt6-svg-dev \ | ||
| qt6-tools-dev \ | ||
| libgl1-mesa-dev \ |
| libqalculate-dev \ | ||
| nodejs \ | ||
| npm \ | ||
| libfuse2 |
| jobs: | ||
| build-binary: | ||
| runs-on: [self-hosted, Linux, X64, prod] | ||
| runs-on: ubuntu-latest |
| build-deb: | ||
| needs: build-binary | ||
| runs-on: [self-hosted, Linux, X64, appimage] | ||
| runs-on: ubuntu-latest |
| build-appimage: | ||
| needs: build-binary | ||
| runs-on: [self-hosted, Linux, X64, appimage] | ||
| runs-on: ubuntu-latest |
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.
The release workflow was configured to run on self-hosted runners with pre-configured environments (Qt6, build tools, dependencies). This migrates all jobs to use GitHub-hosted
ubuntu-latestrunners.Changes
Runner configuration: Changed
runs-onfrom[self-hosted, Linux, X64, prod/appimage]toubuntu-latestfor all three jobs (build-binary,build-deb,build-appimage)Dependency installation: Added installation steps for:
CMake configuration: Removed
-DCMAKE_PREFIX_PATH="$Qt6_DIR"flag as Qt6 is now installed in standard system pathsThe workflow now runs on publicly available runners without requiring custom runner infrastructure or pre-baked environments.