From e32f41353903df611fb437eeaa4f83d1cb688c77 Mon Sep 17 00:00:00 2001 From: Daniel Jobson Date: Thu, 21 Nov 2024 15:43:10 +0100 Subject: [PATCH] CI: Run testbenches in CI - Comment out uds testbench since it is broken --- .github/workflows/ci.yaml | 4 ++++ hw/application_fpga/Makefile | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 71aa6468..9fcaf2ae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -61,6 +61,10 @@ jobs: working-directory: hw/application_fpga run: make lint + - name: run testbenches + working-directory: hw/application_fpga + run: make tb + build-usb-firmware: runs-on: ubuntu-latest container: diff --git a/hw/application_fpga/Makefile b/hw/application_fpga/Makefile index 8f40c1ea..9a4672be 100644 --- a/hw/application_fpga/Makefile +++ b/hw/application_fpga/Makefile @@ -323,7 +323,8 @@ tb: make -C core/touch_sense/toolruns sim-top make -C core/trng/toolruns sim-top make -C core/uart/toolruns sim-top - make -C core/uds/toolruns sim-top +# make -C core/uds/toolruns sim-top +# uds tb is broken, see #260 .PHONY: tb