Add multi-distro DEB/RPM packaging and CI workflows - #10
Merged
Conversation
secwall
requested changes
Mar 30, 2026
Add container-based packaging for: - RPM: Fedora 41-44, Rocky/Alma 8-9, Oracle 8-10, Amazon Linux 2023 - DEB: Debian 11-13, Ubuntu 22.04-24.04 - Both x86_64 and aarch64 architectures New files: - packaging/valkey-luajit.spec.in — RPM spec (cmake + make build) - packaging/debian/ — full Debian packaging (debhelper-compat 13) - scripts/build-container-rpm.sh — container RPM build entrypoint - scripts/build-container-deb.sh — container DEB build entrypoint - scripts/test-module-package.sh — post-install test (6 checks) - .github/workflows/packages.yml — main CI (7 jobs, 72 build+test) - .github/workflows/nightly_packaging.yml — nightly trigger - .github/workflows/release_packaging.yml — release tag trigger - .github/package-platforms.json — platform matrix definition - VERSION — version file (0.1.0-dev) - LICENSE — BSD-3-Clause Source tarball includes LuaJIT submodule via rsync (no .git dirs). All GitHub Actions pinned to commit SHAs. Signed-off-by: Evgeniy Patlan <evgeniy.patlan@percona.com>
- Fix C23 [[fallthrough]] attribute in lua_cjson.c for GCC 11 (EL9) by replacing with portable /* fallthrough */ comment - Fix module entry point test to try nm -D, readelf, and objdump with debug output on failure - Update Recommends to valkey >= 9.1 (scripting engine API required) - Add scripts/build-local.sh for local Docker-based package builds Signed-off-by: Evgeniy Patlan <evgeniy.patlan@percona.com>
secwall
approved these changes
Mar 30, 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.
Add container-based packaging for:
New files:
Source tarball includes LuaJIT submodule via rsync (no .git dirs). All GitHub Actions pinned to commit SHAs.