ci: fix dev config file references
What changed, and why it matters
This is a one-line fix to a GitLab CI configuration file. It changes the path used to copy a default developer build configuration file so the CI pipeline can find the correct file. There is no indication this affects the security of the Jade firmware or user funds.
No security action needed. Treat as a normal CI maintenance fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies gitlab/dev_fw.yml, a GitLab CI pipeline definition. The before_script previously copied configs/sdkconfig
Changed components
gitlab/dev_fw.ymlInspect captured patch +1 / −1
diff --git a/gitlab/dev_fw.yml b/gitlab/dev_fw.yml
index 1f48a56..e0dcd98 100644
--- a/gitlab/dev_fw.yml
+++ b/gitlab/dev_fw.yml
@@ -5,7 +5,7 @@
extends: .build_template
stage: build_dev
before_script:
- - cp configs/sdkconfig$(echo $CI_JOB_NAME | sed "s/^${CI_JOB_STAGE}//").defaults sdkconfig.defaults
+ - cp configs/sdkconfig_dev$(echo $CI_JOB_NAME | sed "s/^${CI_JOB_STAGE}//").defaults sdkconfig.defaults
build_dev_jade:
extends: .build_dev_template
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.