Skip to content

config: Restore baseline-nfs kind of tests #1236

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions config/jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ _anchors:
kind: job
kcidb_test_suite: boot

baseline-nfs-job: &baseline-nfs-job
template: baseline.jinja2
kind: job
kcidb_test_suite: boot
params: &baseline-nfs-params
nfsroot: 'https://storage.kernelci.org/images/rootfs/debian/bookworm/20250708.0/{debarch}'

kbuild-job: &kbuild-job
template: kbuild.jinja2
kind: kbuild
Expand Down Expand Up @@ -155,6 +162,8 @@ jobs:
baseline-x86-mfd: *baseline-job
baseline-x86-qualcomm: *baseline-job

baseline-nfs-arm64: *baseline-nfs-job

kbuild-clang-17-arm: &kbuild-clang-17-arm-job
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}clang-17:arm-kselftest-kernelci
Expand Down
8 changes: 8 additions & 0 deletions config/runtime/baseline-nfs.jinja2
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{%- set boot_commands = 'nfs' %}
{% set test_method = 'baseline' %}
{% set base_template = 'base/' + runtime + '.jinja2' %}
{%- extends base_template %}

{% block commands %}
echo 'Hello World!'
{%- endblock %}
5 changes: 5 additions & 0 deletions config/scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ scheduler:
- rk3588-rock-5b
- sun50i-h6-pine-h64

- job: baseline-nfs-arm64
event: *kbuild-gcc-12-arm64-node-event
runtime: *lava-collabora-runtime
platforms: *collabora-arm64-platforms

- job: wifi-basic
event:
<<: *node-event-kbuild
Expand Down