.github/workflows/build.yml: bump nuttx-ntfc-testing to release-0.0.2 - #3764
Merged
Merged
Conversation
nuttx-ntfc-testing's release-0.0.1 tag pins ntfc.yaml's citest requirement to CONFIG_INIT_ENTRYPOINT=nsh_main, so any sim/citest defconfig that switches to a different init entrypoint (e.g. nxinit's init_main) fails CI with: OSError: Missing kconfig dependency: ['CONFIG_INIT_ENTRYPOINT', 'nsh_main'] Maintainer raiden00pl cut nuttx-ntfc-testing release-0.0.2, which drops that CONFIG_INIT_ENTRYPOINT requirement from ntfc.yaml, and requested both nuttx and nuttx-apps workflows be updated to it: apache/nuttx-ntfc-testing#7 (comment) Only the `git clone -b release-0.0.1` line is changed; the unrelated `ntfc==0.0.1` PyPI package pin (build.yml) is untouched. Assisted-by: opencode-agent/claude-sonnet-5 Signed-off-by: wangjianyu3 <wangjianyu3@xiaomi.com>
simbit18
approved these changes
Aug 31, 2026
simbit18
requested review from
cederom,
eren-terzioglu,
fdcavalcanti,
linguini1,
michallenc,
raiden00pl and
xiaoxiang781216
August 31, 2026 19:03
xiaoxiang781216
approved these changes
Sep 1, 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.
Summary
nuttx-ntfc-testingrelease-0.0.1'sntfc.yamlpins thesim/citestrequirement to
CONFIG_INIT_ENTRYPOINT=nsh_main. Anysim/citestdefconfig that switches its init entrypoint (e.g. to
nxinit'sinit_main, as in apache/nuttx#19984) then failsntfcwith:Maintainer raiden00pl cut
nuttx-ntfc-testingrelease-0.0.2, whichdrops that
CONFIG_INIT_ENTRYPOINTrequirement, and asked that bothnuttxandnuttx-appsworkflows be bumped to it:apache/nuttx-ntfc-testing#7 (comment)
This PR only changes the
git clone -b release-0.0.1line in.github/workflows/build.yml; the unrelatedntfc==0.0.1PyPIpackage version pin is untouched.
Companion PR in nuttx: apache/nuttx#20025
Impact
CI only (
.github/workflows/build.yml), no runtime/code impact.Testing Build Host(s)
N/A - workflow-only change.
Testing
Diff:
Note on CI: GitHub Actions runs
pull_request-triggered workflowsusing the workflow file from the base branch, so verification that
nuttx-appsCI still passes withrelease-0.0.2is only meaningfulafter this merges to
master.