Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/build-yocto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ jobs:
- name: qcom-distro-catchall
yamlfile: ':ci/qcom-distro-catchall.yml'
- name: debug
yamlfile: ':ci/qcom-distro-catchall.yml:ci/debug.yml'
profile: full
yamlfile: ':ci/qcom-distro-catchall.yml:ci/debug.yml:ci/nospdx.yml'
profile: weekly
- name: performance
yamlfile: ':ci/qcom-distro-catchall.yml:ci/performance.yml'
yamlfile: ':ci/qcom-distro-catchall.yml:ci/performance.yml:ci/nospdx.yml'

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 thought we could use drop the create-spdx-image-3.0 directly on ci/performance.yml and ci/debug.yml. That way we wouldn't even need the ci/nospdx.yml.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I think it is still valuable to have that fragment, let's keep this for now and we can revisit if needed.

profile: full
kernel:
- type: default
Expand All @@ -281,6 +281,14 @@ jobs:
name: qcom-distro-catchall
kernel:
type: rt-6.18-distro-kvm
- distro:
name: debug
kernel:
type: rt-6.18-distro-kvm
- distro:
name: performance
kernel:
type: rt-6.18-distro-kvm
# Exclude jobs from compile_warm_up
- machine: glymur-crd
distro:
Expand Down
2 changes: 1 addition & 1 deletion ci/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local_conf_header:
debug-build: |
DEBUG_BUILD = "1"
IMAGE_GEN_DEBUGFS = "1"
IMAGE_FSTYPES_DEBUGFS = "tar.bz2"
IMAGE_FSTYPES_DEBUGFS = "tar.zst"

cmdline-dbg: |
KERNEL_CMDLINE_EXTRA_FTRACE = "ftrace=tracing_on trace_buf_size=5M trace_event=timer:timer_expire_entry,timer:timer_expire_exit,timer:hrtimer_cancel,timer:hrtimer_expire_entry,timer:hrtimer_expire_exit,timer:hrtimer_init,timer:hrtimer_start,irq:*,workqueue:*,sched:sched_migrate_task,sched:sched_pi_setprio,sched:sched_switch,sched:sched_wakeup,sched:sched_wakeup_new,power:clock_set_rate,power:clock_enable,power:clock_disable,power:cpu_frequency,regulator:*,thermal:thermal_zone_trip,thermal:thermal_temperature,thermal:cdev_update,rpmh:rpmh_send_msg"
Expand Down
8 changes: 8 additions & 0 deletions ci/nospdx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/siemens/kas/master/kas/schema-kas.json

header:
version: 14

local_conf_header:
nospdx: |
IMAGE_CLASSES:remove = "create-spdx-image-3.0"
Loading