From 3ecd1efdd2890b526dd332b445b5dc839beec6ba Mon Sep 17 00:00:00 2001 From: Qinghao Shi Date: Fri, 10 May 2024 13:01:43 +0800 Subject: [PATCH] remove sscofpmf=true Signed-off-by: Qinghao Shi --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 489707600397..614dce003732 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -237,14 +237,14 @@ jobs: - name: Run Qemu run: | - qemu-system-riscv64 -cpu ${{ matrix.cpu }},sscofpmf=true -nographic -smp ${{ matrix.core_count }} -M virt -kernel ./Image -append 'rootwait root=/dev/vda ro' -drive file=./rootfs_rv64.ext2,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 -monitor none -monitor none -serial telnet:localhost:5678,server & + qemu-system-riscv64 -cpu ${{ matrix.cpu }} -nographic -smp ${{ matrix.core_count }} -M virt -kernel ./Image -append 'rootwait root=/dev/vda ro' -drive file=./rootfs_rv64.ext2,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 -monitor none -monitor none -serial telnet:localhost:5678,server & - name: Check Qemu Booting Kernel run: .github/ci_scripts/check_qemu.exp 'cat /proc/version' "Linux version" 180 - name: Check perf test - run: .github/ci_scripts/check_qemu.exp 'perf test -s 15,16,17,18,60' 'Symbols' 180 + run: .github/ci_scripts/check_qemu.exp 'perf test -s 5,15,16,17,18,21,60' 'Symbols' 180 @@ -277,7 +277,7 @@ jobs: tar -xvf ${{ matrix.kernel }}.tar.gz - name: Run Qemu - run: qemu-system-riscv32 -cpu ${{ matrix.cpu }},sscofpmf=true -nographic -smp ${{ matrix.core_count }} -M virt -kernel ./Image -append 'rootwait root=/dev/vda ro' -drive file=./rootfs_rv32.ext2,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 -monitor none -serial telnet:localhost:5678,server & + run: qemu-system-riscv32 -cpu ${{ matrix.cpu }} -nographic -smp ${{ matrix.core_count }} -M virt -kernel ./Image -append 'rootwait root=/dev/vda ro' -drive file=./rootfs_rv32.ext2,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 -monitor none -serial telnet:localhost:5678,server & - name: Check Qemu Booting Kernel @@ -285,4 +285,4 @@ jobs: - name: Check perf test - run: .github/ci_scripts/check_qemu.exp 'perf test -s 15,16,17,18,60' 'Symbols' 180 \ No newline at end of file + run: .github/ci_scripts/check_qemu.exp 'perf test -s 5,15,16,17,18,21,60' 'Symbols' 180 \ No newline at end of file