From bff11a932421acf3e2ad78e58f89144957d2a3c7 Mon Sep 17 00:00:00 2001 From: Jose Martins Date: Fri, 17 Nov 2023 18:22:32 +0000 Subject: [PATCH] ci(build/riscv): add matrix for IPIC options on qemu Signed-off-by: Jose Martins --- .github/workflows/build-riscv.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-riscv.yaml b/.github/workflows/build-riscv.yaml index b3391fe0a..40ee9011f 100644 --- a/.github/workflows/build-riscv.yaml +++ b/.github/workflows/build-riscv.yaml @@ -20,8 +20,13 @@ jobs: "PLIC", "APLIC", ] + ipic: [ + "IPIC_SBI", + "IPIC_ACLINT", + ] steps: - uses: actions/checkout@v4 with: submodules: recursive - - run: make PLATFORM=${{ matrix.platform }} IRQC=${{ matrix.irqc }} CONFIG=null + - run: make PLATFORM=${{ matrix.platform }} IRQC=${{ matrix.irqc }} \ + IPIC=${{ matrix.ipic }} CONFIG=null