integration_platforms help us control what get built/executed in CI and for each PR submitted. They do not filter out platforms, instead they just minimize the amount of builds/testing for a particular tests/sample. Tests still run on all supported platforms when not in integration mode. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
32 lines
1005 B
YAML
32 lines
1005 B
YAML
common:
|
|
tags: fpu kernel userspace
|
|
tests:
|
|
kernel.fpu_sharing.float_disable.arm:
|
|
arch_allow: arm
|
|
filter: CONFIG_ARMV7_M_ARMV8_M_FP or CONFIG_ARMV7_R_FP
|
|
extra_configs:
|
|
- CONFIG_DYNAMIC_INTERRUPTS=y
|
|
kernel.fpu_sharing.float_disable.riscv32:
|
|
filter: CONFIG_CPU_HAS_FPU
|
|
arch_allow: riscv32
|
|
kernel.fpu_sharing.float_disable.riscv64:
|
|
filter: CONFIG_CPU_HAS_FPU
|
|
arch_allow: riscv64
|
|
kernel.fpu_sharing.float_disable.sparc:
|
|
filter: CONFIG_CPU_HAS_FPU
|
|
arch_allow: sparc
|
|
kernel.fpu_sharing.float_disable.x86.fpu:
|
|
extra_args: CONF_FILE=prj_x86.conf
|
|
extra_configs:
|
|
- CONFIG_X86_SSE_FP_MATH=n
|
|
platform_allow: qemu_x86 qemu_x86_lakemont ehl_crb acrn_ehl_crb
|
|
integration_platforms:
|
|
- qemu_x86
|
|
kernel.fpu_sharing.float_disable.x86.sse:
|
|
extra_args: CONF_FILE=prj_x86.conf
|
|
extra_configs:
|
|
- CONFIG_X86_SSE_FP_MATH=y
|
|
platform_allow: qemu_x86 qemu_x86_lakemont ehl_crb acrn_ehl_crb
|
|
integration_platforms:
|
|
- qemu_x86
|