-
Notifications
You must be signed in to change notification settings - Fork 24
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
Enable wifi-basic test on the Genio 700 EVK #975
base: main
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 |
---|---|---|
|
@@ -926,6 +926,15 @@ jobs: | |
|
||
kbuild-gcc-12-arm64: *kbuild-gcc-12-arm64-job | ||
|
||
kbuild-gcc-12-arm64-chromebook-main: | ||
<<: *kbuild-gcc-12-arm64-job | ||
params: | ||
<<: *kbuild-gcc-12-arm64-params | ||
fragments: | ||
- 'lab-setup' | ||
- 'kselftest' | ||
- 'arm64-chromebook' | ||
|
||
kbuild-gcc-12-arm64-allnoconfig: | ||
<<: *kbuild-gcc-12-arm64-job | ||
params: | ||
|
@@ -1886,6 +1895,19 @@ jobs: | |
- media | ||
kcidb_test_suite: h26forge.debian | ||
|
||
wifi-basic: | ||
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. This job definition is not anchored anywhere in the main file - did you encounter any failures in processing scheduler entries with this job definition when it's read from "jobs-chromeos.yaml"? 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. I'm not set up to run the kci tools here, so I'm relying on the CI checks done in github. My understanding is that the anchors are private to the yaml file. In jobs-chromeos.yaml the only |
||
template: generic.jinja2 | ||
kind: job | ||
params: | ||
test_method: wifi-basic | ||
boot_commands: nfs | ||
nfsroot: 'https://storage.kernelci.org/images/rootfs/debian/bookworm-wifi/20240313.0/{debarch}/' | ||
rules: | ||
tree: | ||
- mainline | ||
- stable-rc | ||
kcidb_test_suite: kernelci_wifi_basic | ||
|
||
trees: | ||
|
||
amlogic: | ||
|
@@ -2282,6 +2304,14 @@ scheduler: | |
- rk3588-rock-5b | ||
- sun50i-h6-pine-h64 | ||
|
||
- job: wifi-basic | ||
event: | ||
<<: *node-event-kbuild | ||
name: kbuild-gcc-12-arm64-chromebook-main | ||
runtime: *lava-collabora-runtime | ||
platforms: | ||
- mt8390-genio-700-evk | ||
|
||
- job: baseline-arm64-android | ||
event: | ||
<<: *node-event-kbuild | ||
|
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.
It would make sense to me to have this one a plain "-chromebook" and the other one "-chromeos" (since it's in "*-chromeos.yaml" configs).
We can merge it as it is and do the rename as a next step (here, in jobs- and scheduler- files).
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.
Yes, that sounds fine to me. I wanted to keep this PR contained to pipeline.yaml and so I preferred doing the name change here. But renaming the chromeos ones in a separate PR sounds good.