-
Notifications
You must be signed in to change notification settings - Fork 153
WIP: CI: move local.conf modifications into their own yaml to make them optional #839
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,18 +28,10 @@ repos: | |
| meta-poky: | ||
|
|
||
| local_conf_header: | ||
| base: | | ||
| CONF_VERSION = "2" | ||
| INIT_MANAGER = "systemd" | ||
| PACKAGE_CLASSES = "package_ipk" | ||
| INHERIT += "buildstats buildstats-summary" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the 3 INHERIT in there, I see them as 'CI' configs that we want to enforce. I think we should keep them here. rm_work while not needed in CI with throw away instances, is really a nice user feature, which should be kept by default too. |
||
| INHERIT += "buildhistory" | ||
| INHERIT += "rm_work" | ||
| qcomflash: | | ||
| IMAGE_CLASSES += "image_types_qcom" | ||
| IMAGE_FSTYPES += "qcomflash" | ||
| extra: | | ||
| DISTRO_FEATURES:append = " efi pni-names" | ||
| EXTRA_IMAGE_FEATURES = "allow-empty-password empty-root-password allow-root-login" | ||
| IMAGE_ROOTFS_EXTRA_SPACE = "307200" | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # yaml-language-server: $schema=https://raw.githubusercontent.com/siemens/kas/master/kas/schema-kas.json | ||
|
|
||
| header: | ||
| version: 14 | ||
|
|
||
| local_conf_header: | ||
| base: | | ||
| CONF_VERSION = "2" | ||
| INIT_MANAGER = "systemd" | ||
| PACKAGE_CLASSES = "package_ipk" | ||
| INHERIT += "buildstats buildstats-summary" | ||
| INHERIT += "buildhistory" | ||
| INHERIT += "rm_work" | ||
| extra: | | ||
| DISTRO_FEATURES:append = " efi pni-names" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
localconf.yml?