CI refinements: Docker fix, Linode runner, bump workflows - #54
Merged
Conversation
- Multi-stage Dockerfile: build in bookworm using bookworm moxygen tarball, fixing shared lib mismatch crash in runtime image - Publish job runs on Linode self-hosted runner - Rename format job to check-format in ci-pr and ci-main - Add bump-moxygen.yml (workflow_dispatch to advance submodule) - Add auto-merge-bump.yml (auto-merge bump PRs on CI pass)
Contributor
Author
afrind
approved these changes
Mar 12, 2026
afrind
left a comment
Contributor
There was a problem hiding this comment.
🐶 🧑🔬
@afrind reviewed 6 files and all commit messages, and made 2 comments.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on gmarzot).
docker/Dockerfile line 63 at r1 (raw file):
libboost-context1.81.0 \ libssl3 \ zlib1g \
What's this?
- Use Ninja generator and RelWithDebInfo in Dockerfile build stage - Add CMAKE_FIND_LIBRARY_SUFFIXES=".a" for static linking - Fix runtime libboost-context version (1.81.0 → 1.74.0 for bookworm) - Exclude .git/ from Docker context
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.
Summary
debian:bookwormusing bookworm moxygen tarball, fixing shared lib mismatch crash (binary was built on ubuntu-22.04 but runtime was bookworm-slim)format→check-formatin ci-pr.yml and ci-main.ymlworkflow_dispatchto advancedeps/moxygensubmodule, validates artifacts exist before creating PRChanges
docker/Dockerfile— multi-stage: build stage (bookworm + system deps + moxygen tarball), runtime stage (bookworm-slim + runtime libs).dockerignore— excludeinstall/and_build/.github/workflows/ci-main.yml— Linode runner for publish, bookworm tarball download for Docker, check-format rename.github/workflows/ci-pr.yml— check-format rename.github/workflows/bump-moxygen.yml(new).github/workflows/auto-merge-bump.yml(new)Test plan
docker run --rm ghcr.io/openmoq/o-rly:latest --helpworksThis change is