Skip to content

ci: support PR dependencies via depends-on#19075

Open
zhangning21 wants to merge 1 commit into
apache:masterfrom
zhangning21:feature/cross-repo-depends-on
Open

ci: support PR dependencies via depends-on#19075
zhangning21 wants to merge 1 commit into
apache:masterfrom
zhangning21:feature/cross-repo-depends-on

Conversation

@zhangning21

@zhangning21 zhangning21 commented Jun 10, 2026

Copy link
Copy Markdown

Summary

This PR adds support for cross-repo (and same-repo) PR dependencies to the NuttX CI, driven by a depends-on declaration in the PR description.

Why it is needed

nuttx and nuttx-apps are built together in CI. For a normal PR, the Fetch-Source job always checks out the master of the other repo. When a single feature must change both repos, each PR's CI fails because the other repo's master does not yet contain the matching change. Today the only workaround is to force-merge one side with CI skipped, which risks breaking master.

What is changed

Only .github/workflows/build.yml is modified, in two places inside the existing Fetch-Source job:

  1. Determine Target Branches — parse an optional depends-on declaration from the PR body and output it as depends_on.
  2. New step Apply depends-on PRs — for each declared dependency, fetch the dependent PR's pull/<N>/head into the corresponding local checkout and cherry-pick its commits, so the build runs against the combined code.

How it is used (in the PR description):

depends-on: [apache/nuttx/pull/XXX apache/nuttx-apps/pull/YYY]

  • Supports cross-repo deps, multiple deps, and deps on other PRs in the same repo, combined in one declaration.
  • Short path and full https://github.com/... URLs are both accepted and may be mixed; entries are de-duplicated.
  • The companion change is in apache/nuttx-apps (same modification).

Impact

  • Opt-in / no-op when unused: The new Apply depends-on PRs step is guarded by if: steps.gittargets.outputs.depends_on != ''. PRs without a depends-on declaration (the vast majority) behave exactly as today — the step is skipped.
  • Build matrix / runner budget: This does not add or remove any build target, does not change the matrix, and does not re-run builds. For every PR the only always-on addition is a small in-memory text parse of the PR body (a few grep/awk, no network, sub-second). For PRs that do declare a dependency, the extra work (git fetch --unshallow + git fetch pull/<N>/head + cherry-pick) runs once in the single Fetch-Source job, never multiplied across the target matrix. So there is no measurable runner-budget increase for regular PRs.
  • User: No action required. Existing PRs and workflows are unaffected.
  • Build process: Unchanged unless depends-on is declared. When declared and a dependency conflicts or contains a merge commit, Fetch-Source fails fast with a clear message (intended signal to rebase); this only affects the PR that opted in.
  • Hardware: None.
  • Documentation: None required (feature is described here and in the workflow comments).
  • Security: The PR body is passed via an env: variable (the GitHub-recommended mitigation against script injection) and used only as quoted data for grep/awk/sed — never eval'd. Parsed values are constrained by a fixed regex, a 2-entry repo allow-list, and a numeric PR number. The workflow runs on pull_request (read-only token, no secrets).
  • Compatibility: Fully backward compatible; purely additive and opt-in.

Testing

Build Host: Ubuntu 22.04 (GitHub-hosted ubuntu-latest)

Targets: All targets currently built by NuttX CI (full build.yml matrix).
Full-target logs from this PR's own run will be linked once the workflow is
approved to run.

Feature validation (on personal forks):

Scenario Result
PR without depends-on Apply depends-on PRs skipped; behavior identical to baseline
Single cross-repo dependency dependent PR fetched + cherry-picked into the right checkout
Multiple deps, mixed short/URL format, both repos + same-repo all dependencies cherry-picked in order, de-duplicated
Dependency already merged / already present detected as "already included" and skipped
Conflicting dependency / dependency with a merge commit fails fast with a clear "please rebase" message and cherry-pick --abort

This adds a depends-on declaration in the PR description, e.g.:

  depends-on: [apache/pull/100 apache/nuttx-apps/pull/200]

Cross-repo PR dependencies, multiple dependent PRs, and dependencies on
other PRs within the same repository can all be combined and supported.
Once CI parses the dependencies, it fetches each dependent PR in the
corresponding local repository and cherry-picks its commits, so the
build runs against the combined code of all involved PRs.

The current approach is intentionally conservative: it requires neither a
GitHub App nor extra write permissions (which we do not have), making it
safe. Its limitation is that it does not write status or comments back to
the dependent PRs, i.e. a failing CI cannot mark the dependent PR as
failed; when the PRs must be merged together, the PR owners need to
coordinate the merge.

Signed-off-by: zhangning21 <zhangning21@xiaomi.com>
@github-actions github-actions Bot added Area: CI Size: S The size of the change in this PR is small labels Jun 10, 2026
@lupyuen

lupyuen commented Jun 10, 2026

Copy link
Copy Markdown
Member
  1. Could you please fill in the PR Template, I'm concerned especially about the Impact of this PR, whether it will break any CI Builds: https://github.com/apache/nuttx/blob/master/CONTRIBUTING.md#23-pull-requests
  2. Could you provide the Test Logs? This is a major change to NuttX CI, we would need the logs for All NuttX Targets currently built by NuttX CI.
  3. How much reduction / increase in GitHub Actions Build Time would you expect with these changes? Note that we are running on a very strict budget for GitHub Runners: https://lupyuen.org/articles/ci3
  4. I'm not sure if I understand the purpose of the changes. Could you explain with a specific NuttX example, how this dependency management would work?
  5. Please check this CI Error thanks! https://github.com/apache/nuttx/actions/runs/27251914323/job/80478182912?pr=19075#step:6:71

@zhangning21 zhangning21 reopened this Jun 10, 2026
@lupyuen

lupyuen commented Jun 10, 2026

Copy link
Copy Markdown
Member

I noticed that you're using an AI Agent for OpenVela. I'm curious if you used it for creating this PR, because this PR doesn't seem to follow the NuttX Contributing Guidelines. Thanks :-)

id: gittargets
shell: bash
env:
PR_BODY: ${{ github.event.pull_request.body }}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this safe? Do we need to escape the PR Body? Otherwise we could have an Injection Attack?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for raising this. Yes, the PR body is untrusted input, so we need to be careful here.
The reason we pass the body through an env: variable instead of inlining ${{ github.event.pull_request.body }} directly into the run: script is precisely to avoid script injection. This is the mitigation GitHub documents in Security hardening for GitHub Actions
(https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable):

│ - With env:, the body is delivered to the step as the value of an environment variable. It is never substituted into the script source, so shell metacharacters in the body (`, $(
), ;, &&, …) are treated as literal data, not executed.
│ - The dangerous form would be inlining it directly, e.g. run: echo "${{ github.event.pull_request.body }}", where a body like "; rm -rf / # would be injected into the script text.
We deliberately do not do that.

│ On top of the env: indirection, the body is only ever consumed as quoted data by text-processing tools — echo "$PR_BODY" | grep -oE … — never eval'd or executed. The values we extract are further constrained:
│ - dependencies must match a fixed regex (?:https://github.com/)?apache/nuttx(\?:-apps)?/pull/[0-9]+;
│ - the repo is checked against a 2-entry allow-list (apache/nuttx, apache/nuttx-apps);
│ - the PR number is [0-9]+ only, so the later git fetch origin "pull/${DEP_PR_NUM}/head:…" can't be abused.

│ Finally, this workflow runs on pull_request (not pull_request_target), so the job has a read-only GITHUB_TOKEN and no secrets — the blast radius is minimal even in the worst case.

│ If helpful, I can switch the echo "$PR_BODY" calls to printf '%s\n' "$PR_BODY" for slightly more robust handling of arbitrary text (purely a robustness nicety, not a security fix).

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zhangning21 This GitHub Actions Design is very unusual for NuttX CI. If I understand correctly:

  1. We expect the PR Author to specify inside the PR Body the dependency: depends-on: apache/nuttx/pull/88888888
  2. What if the PR Author edits the dependency in the PR Body? Will the dependency be rechecked?
  3. I'm concerned about parsing the Untrusted Input from the PR Body. Isn't a PR Label a better way to provide the dependency? E.g. depends-on=nuttx/88888888
  4. Are there any other projects using this? I wonder if they are also OK with parsing Untrusted Input from the PR Body.
  5. @simbit18 @linguini1 @cederom Do we think it's a good idea to parse the dependency from the PR Body? depends-on: apache/nuttx/pull/88888888

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Purpose
│ nuttx and nuttx-apps are built together in CI, and for a normal PR the Fetch-Source job always checks out the master of the other repo. The main problem this solves is cross-repo PR interdependency: when one feature must change both repos, each PR's CI fails because the other repo's master doesn't yet contain the matching change — today the only workaround is to force-merge one side with CI skipped, which risks breaking master. The same mechanism also covers the case where a PR depends on another PR in the same repo. The author declares this in the PR body, e.g. depends-on: [apache/nuttx-apps/pull/XXX], and CI builds the combined code. It's fully opt-in — without a depends-on line, CI behaves exactly as today.

Now to your specific questions:

│ 1. Yes, the author specifies the dependency in the PR body.

│ 2. "If the author edits the dependency in the body, is it rechecked?"
│ If the author edits only the PR body, it is not rechecked immediately. This follows the current workflow behavior: the existing pull_request trigger does not run CI for PR description edits, only for normal CI-triggering events such as new commits. The dependency will be re-read on the next CI run.

│ 3. "Isn't a PR Label better than parsing untrusted body text?"
│ Labels would be more controlled, but they are not very practical here because external contributors usually cannot apply labels to upstream PRs, and dependency values are dynamic PR numbers rather than fixed categories. Using the PR body lets the contributor declare the dependency directly, while the workflow still validates it with a strict allowlist and numeric PR ID.

│ 4. "Do other projects parse dependencies from the PR body, and are they OK with the untrusted input?"
│ Yes . A similar approach is used by Zuul CI for cross-project dependencies. Zuul supports a Depends-On: directive, and for GitHub-based projects it is placed in the pull request
description: https://zuul-ci.org/docs/zuul/latest/gating.html#cross-project-dependencies

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The main problem this solves is cross-repo PR interdependency: when one feature must change both repos, each PR's CI fails because the other repo's master doesn't yet contain the matching change — today the only workaround is to force-merge one side with CI skipped, which risks breaking master.

I'm not sure if my Fellow Maintainers agree with me: But here's what I think about Breaking Changes that require both NuttX Repo and NuttX Apps Repo to be in sync...

Breaking Changes need to be carefully and manually managed. I expect the PR Author to test the changes in their own NuttX Repo and NuttX Apps Repo, and provide evidence that All NuttX Builds were successful. Then CI Team needs to standby and make sure that both NuttX Repo and NuttX Apps Repo are merged at the same time.

If we allow PR Authors to specify which version of NuttX / NuttX Apps to build: We might forget to do the manual checking and the simultaneous merging. And when NuttX / NuttX Apps repos go out of sync, we will have lots more problems :-(

@lupyuen

lupyuen commented Jun 10, 2026

Copy link
Copy Markdown
Member

Hi NuttX Admins: Please don't click "Approve Workflows To Run", I have concerns about the Safety of the GitHub Actions:

@zhangning21

Copy link
Copy Markdown
Author

I noticed that you're using an AI Agent for OpenVela. I'm curious if you used it for creating this PR, because this PR doesn't seem to follow the NuttX Contributing Guidelines. Thanks :-)

@lupyuen The packages_ai_agent repository is only a personal fork I used for testing some OpenVela community workflow ideas. It is unrelated to this Apache NuttX PR and is not used by this workflow.

I'll update the PR to follow the guidelines and ping you again. Apologies for the rough first pass, and thanks for the careful review!

Comment on lines +100 to +120
ARRAY_DEPS=$(echo "$PR_BODY" | grep -oE 'depends-on:[[:space:]]*\[[^]]+\]' | head -1) || true
if [ -n "$ARRAY_DEPS" ]; then
DEPS=$(echo "$ARRAY_DEPS" | grep -oE '(https://github.com/)?apache/nuttx(-apps)?/pull/[0-9]+') || true
else
DEPS=$(echo "$PR_BODY" | grep -oE 'depends-on:[[:space:]]*(https://github.com/)?apache/nuttx(-apps)?/pull/[0-9]+' | sed 's/depends-on:[[:space:]]*//' | head -1) || true
fi

for DEP in $DEPS; do
DEP=$(echo "$DEP" | sed 's|https://github.com/||')
DEP_REPO=$(echo "$DEP" | awk -F'/pull/' '{print $1}')
DEP_PR_NUM=$(echo "$DEP" | awk -F'/pull/' '{print $2}')

if [[ "$DEP_REPO" != "apache/nuttx" && "$DEP_REPO" != "apache/nuttx-apps" ]]; then
echo "::warning::Ignoring unsupported dependency repo: $DEP_REPO"
continue
fi

DEPENDS_ON="$DEPENDS_ON ${DEP_REPO}/pull/${DEP_PR_NUM}"
done

DEPENDS_ON=$(echo "$DEPENDS_ON" | tr ' ' '\n' | awk 'NF && !a[$0]++' | xargs)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi NuttX Admins: This script will parse the Untrusted Input from the PR Body to extract the Dependency Info safely, which will prevent Injection Attacks inside the PR Body. I'm afraid the current NuttX CI Team doesn't have sufficient expertise to maintain this, we might introduce Injection Attacks in future.

I strongly suggest that we engage a NuttX Team Member familiar with GitHub Actions Script Security, who will be able to maintain this script, to prevent Injection Attacks in future. We must comply with the Apache Guidelines for GitHub Actions Security: https://infra.apache.org/github-actions-policy.html

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a big concern. For now it might be a good idea to forgo this change.

@lupyuen lupyuen linked an issue Jun 10, 2026 that may be closed by this pull request
1 task
@lupyuen

lupyuen commented Jun 10, 2026

Copy link
Copy Markdown
Member

Testing: All targets currently built by NuttX CI (full build.yml matrix).
Full-target logs from this PR's own run will be linked once the workflow is
approved to run.

Could you show us a working version of this code in your Own NuttX Repo? Also we need the Test Logs for the various test cases thanks!

  1. No depends-on in PR Body
  2. depends-on with a Valid PR Number: apache/nuttx-apps/pull/???
  3. depends-on with a Invalid PR Number: apache/nuttx-apps/pull/88888888
  4. depends-on with a Non-Apache PR: lupyuen/nuttx-apps/pull/1
  5. depends-on with a typo: apache/nuttx-apps/push/???

@zhangning21

Copy link
Copy Markdown
Author

Testing: All targets currently built by NuttX CI (full build.yml matrix).
Full-target logs from this PR's own run will be linked once the workflow is
approved to run.

Could you show us a working version of this code in your Own NuttX Repo? Also we need the Test Logs for the various test cases thanks!

  1. No depends-on in PR Body
  2. depends-on with a Valid PR Number: apache/nuttx-apps/pull/???
  3. depends-on with a Invalid PR Number: apache/nuttx-apps/pull/88888888
  4. depends-on with a Non-Apache PR: lupyuen/nuttx-apps/pull/1
  5. depends-on with a typo: apache/nuttx-apps/push/???

@lupyuen Here's a working version running in my own forks (zhn-test/nuttx + zhn-test/nuttx-apps), with CI logs for each test case.

Note: on the fork the dependent PR is fetched from the fork's origin, so the examples use zhn-test/... instead of apache/...; the behavior is identical. The relevant evidence is the Apply depends-on PRs step in the Fetch-Source job.

# Test case depends-on value Apply step Result Log
1 No depends-on (none) skipped Baseline; CI proceeds run
2 Valid PR number [zhn-test/nuttx-apps/pull/1] success Fetched + cherry-picked run
3 Invalid PR number [zhn-test/nuttx/pull/88888888] failure fatal: couldn't find remote ref → exit 1 (fail-fast) run
4 Non-Apache repo [lupyuen/nuttx/pull/1] skipped Ignored by allowlist; CI proceeds run
5 Typo (push/) [zhn-test/nuttx/push/2] skipped Not matched; CI proceeds run

Note: cases 4 and 5 are silently ignored (no error, no warning) because the values don't match the dependency regex. If preferred, I can add a warning when a depends-on: line is present but yields no valid dependency, to catch typos/wrong repos early.

@lupyuen

lupyuen commented Jun 10, 2026

Copy link
Copy Markdown
Member
  1. When we create a NuttX Release Branch, like
    https://github.com/apache/nuttx/tree/releases/12.13
    It's meant to be compiled with the corresponding NuttX Apps Release Branch:
    https://github.com/apache/nuttx-apps/tree/releases/12.13
    Do you expect any problems with the code?
  2. Release Branch will have Back-Ported PRs like this:
    {bp-18485} sched/critmon: Fix CPU load stats incorrect when using SCHED_CPULOAD_… #18616
    Notice that the PR Body is cloned from the Original PR:
    sched/critmon: Fix CPU load stats incorrect when using SCHED_CPULOAD_CRITMONITOR #18485
    Suppose the Original PR Body specifies depends-on, and it's copied into the Back-Ported PR. Won't the Back-Ported PR build incorrectly against the depends-on branch, instead of the correct releases/12.13 branch?

@zhangning21

zhangning21 commented Jun 10, 2026

Copy link
Copy Markdown
Author
  1. When we create a NuttX Release Branch, like https://github.com/apache/nuttx/tree/releases/12.13 It's meant to be compiled with the corresponding NuttX Apps Release Branch: https://github.com/apache/nuttx-apps/tree/releases/12.13 Do you expect any problems with the code?
  2. Release Branch will have Back-Ported PRs like this: {bp-18485} sched/critmon: Fix CPU load stats incorrect when using SCHED_CPULOAD_… #18616
    Notice that the PR Body is cloned from the Original PR: sched/critmon: Fix CPU load stats incorrect when using SCHED_CPULOAD_CRITMONITOR #18485
    Suppose the Original PR Body specifies depends-on, and it's copied into the Back-Ported PR. Won't the Back-Ported PR build incorrectly against the depends-on branch, instead of the correct releases/12.13 branch?

@lupyuen Thanks again — good point about release branches and backports.

I've gone with the simplest and safest rule:

depends-on is processed only for PRs whose target branch is master.

if [ -n "$PR_BODY" ] && [ "$GITHUB_BASE_REF" = "master" ]; then
  # parse depends-on ...
fi

This avoids the backport problem without adding GitHub API calls or extra permissions.

What this means:

  • Backport / release-branch PRs ignore depends-on entirely. If a backport PR to releases/12.13 carries a copied depends-on: line from the original master PR, CI skips it and keeps the existing release behavior: build against the matching releases/12.13 branch of the other repo.

  • A copied master dependency cannot be accidentally cherry-picked onto a release branch.

  • No GitHub API call and no pull-requests permission are needed.

  • push / tag handling is unchanged; that path has no PR body and is unrelated to depends-on.

One limitation: this checks only the current PR's target branch. Without an API lookup, the workflow does not verify the dependency PR's own base branch, so this feature is intended for the normal master-branch cross-repo dependency case. A stricter version could query each dependency PR's base.ref and require it to match, but that would reintroduce an API call and extra permission surface. For now, restricting depends-on to PRs targeting master seems the simpler and safer trade-off.

I've validated this in my test fork with a backport-style PR targeting releases/12.13 whose body contains a copied depends-on: line. The Apply depends-on PRs step is skipped and CI builds against the matching releases/12.13 branch, so the copied dependency is ignored:

Validation run: https://github.com/zhn-test/nuttx/actions/runs/27262401865/job/80511061759

Please see the Apply depends-on PRs step in the Fetch-Source job. It is skipped. Any downstream build differences in my fork are unrelated to this depends-on handling.

If this approach looks OK, I'll update this PR first. After this PR is reviewed and the approach is agreed, I will submit the matching apache/nuttx-apps PR with the same workflow update so the two workflows stay consistent.

@lupyuen

lupyuen commented Jun 10, 2026

Copy link
Copy Markdown
Member

@zhangning21 Please hang on to the changes, I would like to hear from other maintainers about:

  1. Should we allow PR Metadata inside the PR Body:
    ci: support PR dependencies via depends-on #19075 (comment)
  2. We don't have CI Maintainers who can maintain these changes:
    ci: support PR dependencies via depends-on #19075 (comment)
  3. Overall this PR sounds too complex to implement PR Dependency? NuttX CI is already too complex, we might be making it harder to maintain. And there's GitHub Actions Security to be considered too.

@linguini1

Copy link
Copy Markdown
Contributor

I'm not sure we should allow metadata within the PR body. This is a cool idea but maybe it needs to be put on hold for now.

@lupyuen

lupyuen commented Jun 10, 2026

Copy link
Copy Markdown
Member

Yep I agree that embedding PR Metadata (e.g. depends-on) inside the PR Body can get problematic:

  • When we update the PR Metadata: The PR doesn't auto-rebuild. PR Reviewers might be misled by the metadata.
  • When the PR Metadata is Invalid: We don't see any warnings. This makes it harder to track down CI problems.

If we ever need to support PR Metadata in future, we would need a lot more work:

  1. Parsing the PR Body should be done safely in a separate GitHub Actions Workflow, in GitHub Script (JavaScript). PR Metadata should be carefully validated and stored as PR Labels or PR Artifacts. Similar to our PR Labeling: https://lupyuen.org/articles/prtarget
  2. If there are errors in parsing the PR Body: The GitHub Actions Workflow should trigger a PR Comment, to indicate why the parsing failed
  3. If there are changes to the PR Metadata: It should also trigger a PR Comment, to indicate the changes
  4. But with these changes, NuttX CI might become too complex to maintain :-(

@lupyuen

lupyuen commented Jun 12, 2026

Copy link
Copy Markdown
Member

Hi @zhangning21: I'm sorry that we have to close this PR because:

  1. NuttX Maintainers feel that embedding PR Metadata (like depends-on) inside the PR Body, might confuse PR Authors and PR Reviewers: (1) Editing the PR Metadata won't trigger a rebuild (2) Errors in the PR Metadata are silently ignored
  2. NuttX CI Team doesn't have the awk / sed skills to maintain the proposed Shell Script that safely parses and extracts the PR Metadata from the PR Body. Which might lead to Script Injection Attacks in future updates.

I'm also sorry for your time wasted in preparing this meticulous PR. Perhaps in future, you could create a NuttX Issue first, then assign it to me for discussion, so we can agree on the best solution?

I hope you understand that ASF Infrastructure Team is closely watching our usage of GitHub Actions. They nearly banned NuttX Project twice from using GitHub Actions, due to overuse and security concerns. Thanks :-)

@lupyuen lupyuen closed this Jun 12, 2026
@xiaoxiang781216

xiaoxiang781216 commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

@lupyuen please don't close PR without voting:

Hi @zhangning21: I'm sorry that we have to close this PR because:

  1. NuttX Maintainers feel that embedding PR Metadata (like depends-on) inside the PR Body,

Do you have other better method to fix the patch which has the cross-git dependence, which is a must have feature, but doesn't fix for a long time.

might confuse PR Authors and PR Reviewers: (1) Editing the PR Metadata won't trigger a rebuild

the dependence is described in the commit message, why change in commit message doesn't trigger a rebuild?

(2) Errors in the PR Metadata are silently ignored

if the description is wrong, ci doesn't cherry-pick the related patch on apps side, then ci will fail loudly.

  1. NuttX CI Team doesn't have the awk / sed skills to maintain the proposed Shell Script that safely parses and extracts the PR Metadata from the PR Body. Which might lead to Script Injection Attacks in future updates.

If awk/sed isn't good, let's stick to pure shell script or switch to python.

I'm also sorry for your time wasted in preparing this meticulous PR. Perhaps in future, you could create a NuttX Issue first, then assign it to me for discussion, so we can agree on the best solution?

How to verify the cross-git patch correctly is a well-known issue for our ci build system, not a new issue.

@lupyuen

lupyuen commented Jun 12, 2026

Copy link
Copy Markdown
Member

@xiaoxiang781216 I'm afraid I can't commit to these enhancements for NuttX CI. I'm already overwhelmed by the maintenance of NuttX CI, keeping it performant and secure, as mandated by ASF Infra Team. From now on: I'm stepping away from all NuttX CI Duties, and focusing instead on my Family Matters.

@simbit18 @acassis @cederom @linguini1 @raiden00pl @hartmannathan @jerpelea Sorry I need to take a break from NuttX Project, it's hurting my hypertension. Hope to catch you again in future. Goodbye!

@linguini1

Copy link
Copy Markdown
Contributor

@lupyuen best wishes! Hope to hear from you again soon :)

@acassis

acassis commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

@xiaoxiang781216 I'm afraid I can't commit to these enhancements for NuttX CI. I'm already overwhelmed by the maintenance of NuttX CI, keeping it performant and secure, as mandated by ASF Infra Team. From now on: I'm stepping away from all NuttX CI Duties, and focusing instead on my Family Matters.

@simbit18 @acassis @cederom @linguini1 @raiden00pl @hartmannathan @jerpelea Sorry I need to take a break from NuttX Project, it's hurting my hypertension. Hope to catch you again in future. Goodbye!

Hi @lupyuen that is completely understandable. Take a break and focus on your health and your family!
We are eternally grateful for your great support all these years, be sure you are was an inspiration for many people inclusive for myself.

I'm sure you will continue to do great things! I wish you all the best!

@acassis acassis left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zhangning21 could you please add those information you added in the Summary into our CI Documentation: https://nuttx.apache.org/docs/latest/testing/nuttx-ci.html

@linguini1 linguini1 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems like a great solution, I think it's really cool and it does solve a huge headache NuttX has had for a while. However, given the concerns from Lup about parsing the PR body, I think before this is merged we should check with Apache Infra about what they think about this solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Area: CI Size: S The size of the change in this PR is small

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[FEATURE] Support PR dependencies via depends-on

5 participants