From dce2a3e06af6d808768a63ab76775d02b24ac84a Mon Sep 17 00:00:00 2001 From: umarcor Date: Wed, 21 Feb 2024 11:08:35 +0100 Subject: [PATCH] [ci] test example hello_world as well --- .github/workflows/Processor.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Processor.yml b/.github/workflows/Processor.yml index aff60e03f..3e53d8b2f 100644 --- a/.github/workflows/Processor.yml +++ b/.github/workflows/Processor.yml @@ -39,6 +39,12 @@ jobs: Simple: runs-on: ubuntu-latest name: 'Simple testbench' + strategy: + fail-fast: false + matrix: + example: + - processor_check + - hello_world steps: @@ -50,7 +56,7 @@ jobs: # Redirect UART0 TX to text.io simulation output via user flags with: args: >- - make -C sw/example/processor_check + make -C sw/example/${{ matrix.example }} clean_all USER_FLAGS+="-DUART0_SIM_MODE -DUART1_SIM_MODE -flto" EFFORT=-Os