riscv64: add minimal CI (compile-only)#240
Open
LuckyMagician99 wants to merge 4 commits intokrallin:masterfrom
Open
riscv64: add minimal CI (compile-only)#240LuckyMagician99 wants to merge 4 commits intokrallin:masterfrom
LuckyMagician99 wants to merge 4 commits intokrallin:masterfrom
Conversation
Author
|
Hi @krallin — friendly ping. Could you please share guidance on PR #240 (minimal riscv64 compile-only CI)? Since this comes from a fork, GitHub Actions won’t run until a maintainer approves the workflow run. I’m happy to adjust to your preference: switch to cross-compilation (no QEMU), fold into an existing workflow, or even port the check to the repo’s current CI setup if GitHub Actions isn’t preferred. Scope is intentionally small (no behavior change; compile-only) to catch regressions early. If this is out-of-scope for Tini right now, a quick note on preferred direction (or acceptance criteria) would be super helpful. Thanks for your time! |
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.
This PR adds a minimal riscv64 CI job (compile-only).
Verification (native + container):
tini version 0.19.0 - git.369448a$ docker run --rm --platform=riscv64 -v "$PWD":/work ubuntu:22.04 /work/tini-riscv64 --version
tini version 0.19.0 - git.2887798
$ docker run --rm -it --platform=riscv64 -v "$PWD":/work --entrypoint /work/tini-riscv64 ubuntu:22.04 -s -- bash -lc 'echo "bash PID=$$, PPID=$PPID"; cat /proc/1/comm; readlink /proc/1/exe'
bash PID=7, PPID=1
tini-riscv64
/work/tini-riscv64
Context: refs #239 (riscv64 proposal with native build + PID1 experiment).
Happy to switch to cross-compilation, merge into an existing workflow, or adjust triggers per maintainers’ preference.