.github/workflows/build.yml: bump nuttx-ntfc-testing to release-0.0.2 - #20025
Open
JianyuWang0623 wants to merge 1 commit into
Open
.github/workflows/build.yml: bump nuttx-ntfc-testing to release-0.0.2#20025JianyuWang0623 wants to merge 1 commit into
JianyuWang0623 wants to merge 1 commit into
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 is untouched. Assisted-by: opencode-agent/claude-sonnet-5 Signed-off-by: wangjianyu3 <wangjianyu3@xiaomi.com>
JianyuWang0623
marked this pull request as ready for review
August 31, 2026 16:13
JianyuWang0623
requested review from
lupyuen,
raiden00pl and
simbit18
as code owners
August 31, 2026 16:13
xiaoxiang781216
approved these changes
Aug 31, 2026
simbit18
approved these changes
Aug 31, 2026
fdcavalcanti
approved these changes
Aug 31, 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 #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.1PyPI packageversion pin is untouched.
Companion PR in nuttx-apps: apache/nuttx-apps#3764
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 this PR's own CI
(and #19984's) will keep using
release-0.0.1until this is mergedto
master. Verified the failure this fixes by pulling the full logof #19984's latest
Linux (sim-01)run(https://github.com/apache/nuttx/actions/runs/33357467170/job/99512227211),
which fails at the
sim/citeststep with exactly:Post-merge verification (re-running #19984's
Linux (sim-01)/sim:citestagainstrelease-0.0.2) is tracked as a follow-up oncethis lands.