Skip to content
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
8 changes: 8 additions & 0 deletions config/jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ _anchors:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}clang-21:arm64-kselftest-kernelci
params: &kbuild-clang-21-arm64-params
backend: tuxmake
arch: arm64
compiler: clang-21
cross_compile: 'aarch64-linux-gnu-'
Expand All @@ -48,6 +49,7 @@ _anchors:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}clang-21:x86-kselftest-kernelci
params: &kbuild-clang-21-x86-params
backend: tuxmake
arch: x86_64
compiler: clang-21
defconfig: x86_64_defconfig
Expand All @@ -56,6 +58,7 @@ _anchors:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}gcc-14:arm64-kselftest-kernelci
params: &kbuild-gcc-14-arm64-params
backend: tuxmake
arch: arm64
compiler: gcc-14
cross_compile: 'aarch64-linux-gnu-'
Expand All @@ -81,6 +84,7 @@ _anchors:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}gcc-14:x86-kselftest-kernelci
params: &kbuild-gcc-14-x86-params
backend: tuxmake
arch: x86_64
compiler: gcc-14
defconfig: x86_64_defconfig
Expand Down Expand Up @@ -219,6 +223,7 @@ jobs:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}clang-21:arm-kselftest-kernelci
params: &kbuild-clang-21-arm-params
backend: tuxmake
arch: arm
compiler: clang-21
cross_compile: 'arm-linux-gnueabihf-'
Expand Down Expand Up @@ -456,6 +461,7 @@ jobs:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}clang-21:riscv64-kselftest-kernelci
params: &kbuild-clang-21-riscv-params
backend: tuxmake
arch: riscv
compiler: clang-21
cross_compile: 'riscv64-linux-gnu-'
Expand Down Expand Up @@ -630,6 +636,7 @@ jobs:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}gcc-14:arm-kselftest-kernelci
params: &kbuild-gcc-14-arm-params
backend: tuxmake
arch: arm
compiler: gcc-14
cross_compile: 'arm-linux-gnueabihf-'
Expand Down Expand Up @@ -1291,6 +1298,7 @@ jobs:
<<: *kbuild-job
image: ghcr.io/kernelci/{image_prefix}gcc-14:riscv64-kselftest-kernelci
params: &kbuild-gcc-14-riscv-params
backend: tuxmake
arch: riscv
compiler: gcc-14
cross_compile: 'riscv64-linux-gnu-'
Expand Down
3 changes: 3 additions & 0 deletions config/runtime/kbuild.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ KBUILD_PARAMS = {
{%- else %}
'fragments': [],
{%- endif %}
{%- if backend %}
'backend': '{{ backend }}',
{%- endif %}
{%- if cross_compile %}
'cross_compile': '{{ cross_compile }}',
{%- endif %}
Expand Down