Add Linux development release.#3394
Merged
Merged
Conversation
Contributor
|
Brilliant, I will test this weekend. Thanks |
Contributor
|
Tested and working fine, thanks. |
Collaborator
|
Since it is built with OpenSSL3 it is currently ""blocked"" by #3402 |
Collaborator
|
@mserajnik is it possible to have just one tag? |
Contributor
Author
Possible, but requires quite a bit of restructuring. I can tackle that, but will probably take a few weeks as I'm busy with other stuff at the moment. |
Contributor
|
And don't forget we also need a MacOS build action! 👼 |
This was referenced May 14, 2026
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.
🍰 Pullrequest
This adds a Linux development release (
amd64-only) similar to the existing Windows release, as requested by @NickTyrer.The release is built on Ubuntu 24.04 and published as
dev-linux-amd64-<sha>.tar.gzunder a newlinux_latestmoving release tag.I decided to make the release somewhat portable instead of relying on system dependencies, but it is not fully statically linked. Instead, the package bundles non-
glibcruntime libraries inlib/and uses PatchELF to set relativeRPATHs, so binaries underbin/can find the bundled libraries after extraction.glibcand the dynamic loader are not bundled, so the archive is expected to work onamd64systems withglibc2.39 or newer. Alpine/musland olderglibcsystems are not supported.The workflow includes a small smoke test (which I can also remove if unwanted) that extracts the archive in a fresh Ubuntu 24.04 Docker container, runs
realmd --versionandmangosd --version, and checks the packaged ELF files withldd.I have not done a full runtime test with a configured database and extracted client data, so I marked this as draft for now. (@NickTyrer: if you could try this, it would be great.)Edit: I did some testing and for me everything worked, Nick tested too, so this should be fine functionality-wise, removed the draft status.
Proof
Issues
How2Test
cd vmangos-linux-amd64DataDir = "."(or put it elsewhere and adjustDataDiraccordingly):realmdandmangosdfrom the archive root:Todo / Checklist