From d29f2292793bd150027689b436edae61ab09a0f4 Mon Sep 17 00:00:00 2001 From: Yu-Chun Lin Date: Thu, 23 Jan 2025 11:12:37 +0800 Subject: [PATCH] CI: Add RV32E test to CI pipeline Add testing for the RV32E to the CI pipeline to ensure automatic validation during continuous integration. --- .ci/riscv-tests.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci/riscv-tests.sh b/.ci/riscv-tests.sh index ac1a44419..a1d8236a2 100755 --- a/.ci/riscv-tests.sh +++ b/.ci/riscv-tests.sh @@ -22,3 +22,7 @@ make ENABLE_EXT_M=1 ENABLE_EXT_A=1 ENABLE_EXT_F=1 ENABLE_EXT_C=1 \ make arch-test RISCV_DEVICE=IMAFCZicsrZifencei $PARALLEL || exit 1 make arch-test RISCV_DEVICE=FCZicsr $PARALLEL || exit 1 make arch-test RISCV_DEVICE=IMZbaZbbZbcZbs $PARALLEL || exit 1 + +make distclean +make ENABLE_RV32E=1 ENABLE_FULL4G=1 $PARALLEL +make arch-test RISCV_DEVICE=E $PARALLEL || exit 1