From 403dffa2816b64a3488a548fc010124dfe2c0e95 Mon Sep 17 00:00:00 2001 From: jxwleong Date: Thu, 7 Sep 2023 16:03:03 +0800 Subject: [PATCH] Attemp #3 to fix the github action --- .github/workflows/rtl_tb_test.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/rtl_tb_test.yml b/.github/workflows/rtl_tb_test.yml index 4c8889b..37bf2cd 100644 --- a/.github/workflows/rtl_tb_test.yml +++ b/.github/workflows/rtl_tb_test.yml @@ -21,16 +21,12 @@ jobs: - name: Build and run Verilog simulation run: - ( - # Subsequent step will back to root directory automatically - cd testbench/rtl_tb - make -f Makefile all - ) + # Subsequent step will back to root directory automatically + working-directory: testbench/rtl_tb + make -f Makefile all - name: Clean up run: - ( - cd testbench/rtl_tb - make -f Makefile clean - ) + working-directory: testbench/rtl_tb + make -f Makefile clean